-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "template",
"version": "1.3.1",
"main": "lib/app.js",
"repository": {
"type": "git",
"url": "https://github.com/pikadun/redis"
},
"license": "MIT",
"scripts": {
"test": "ts-node test/index.ts",
"coverage": "nyc --nycrc-path=./eng/.nycrc.json npm test",
"format": "ts-node ./eng/lint.ts",
"watch": "tsc --build ./eng/tsconfig.dev.json --watch",
"compile": "tsc --build ./eng/tsconfig.prod.json"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"types": "./types/index.d.ts",
"eslintConfig": {
"extends": "./eng/.eslintrc.json"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"husky": "^5.1.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}