-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 934 Bytes
/
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
{
"private": true,
"version": "0.0.1",
"engines": {
"node": ">= 16.14.2",
"npm": ">= 8.9.0"
},
"engineStrict": true,
"scripts": {
"test": "nyc ts-mocha src/**/*.spec.ts",
"test:nocover": "ts-mocha src/**/*.spec.ts",
"lint": "eslint src/**/",
"lint:fix": "eslint src/**/ --fix"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}