forked from FredericEspiau/kata-ts-gilded-rose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "jest-base",
"version": "3.0.0",
"description": "Base for testing with Jest and TS",
"scripts": {
"start": "ts-node src/main.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FredericEspiau/jest-base.git"
},
"author": "Frédéric Espiau <frederic.espiau@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FredericEspiau/jest-base/issues"
},
"homepage": "https://github.com/FredericEspiau/jest-base#readme",
"devDependencies": {
"@stryker-mutator/core": "^4.0.0-beta.3",
"@stryker-mutator/jest-runner": "^4.0.0-beta.3",
"@stryker-mutator/typescript": "^4.0.0-beta.3",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-extended-snapshot": "^1.1.2",
"jest-mock-extended": "^1.0.10",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}