-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"scripts": {
"typecheck": "tsc --noEmit",
"test": "jest",
"test:cov": "jest --coverage",
"stryker": "stryker run",
"format": "prettier --write 'src/**/*.{ts,js,css,md,json}'",
"lint": "eslint --fix src/**/*.ts",
"prepare": "git config core.hooksPath git-hooks || echo 'Not in a git repo'",
"release": "standard-version",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css}": [
"prettier --write"
]
},
"os": [
"darwin"
],
"engineStrict": true,
"engines": {
"node": ">=16 <17"
},
"version": "1.5.0",
"private": true,
"dependencies": {
"axios": "0.24.0",
"jsdom": "19.0.0",
"p-queue": "6.6.2",
"snake-case": "3.0.3",
"typed-inject": "3.0.1",
"xml": "1.0.1"
},
"devDependencies": {
"@stryker-mutator/core": "7.1.1",
"@stryker-mutator/jest-runner": "7.1.1",
"@stryker-mutator/typescript-checker": "7.1.1",
"@tsconfig/node16-strictest": "1.0.1",
"@types/jest": "27.0.3",
"@types/jsdom": "16.2.13",
"@types/node": "16.11.27",
"@types/xml": "1.0.8",
"@types/xml2js": "0.4.9",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.4.3",
"lint-staged": "12.4.1",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"ts-jest": "27.0.7",
"ts-node": "8.10.2",
"typescript": "4.5.2",
"xml2js": "0.5.0"
}
}