-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
{
"name": "seed-express-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^9.0.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.2.0"
},
"scripts": {
"prepare": "husky install",
"test": "./node_modules/.bin/mocha --no-timeout --slow 0 -r ts-node/register 'tests/**/*.ts'",
"unit-test": "./node_modules/.bin/mocha --no-timeout --slow 0 -r ts-node/register 'tests/unit/*.ts'",
"coverage": "nyc _mocha --no-timeout --slow 0 -r ts-node/register 'tests/**/*.ts' --reporter mocha-lcov-reporter",
"coveralls": "NODE_ENV=test nyc report --reporter=lcov --reporter=text --report-dir=coverage"
},
"dependencies": {
"typescript": "^4.4.3"
},
"lint-staged": {
"**/*.ts": [
"yarn eslint",
"yarn prettier --write",
"yarn test",
"yarn coverage"
]
}
}