-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"jest:watchAll": "jest --watchAll --colors",
"test": "jest --coverage --verbose --colors",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"prettier": "prettier --write src/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm t"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier",
"git add"
]
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^10.0.3",
"ts-node": "8.5.4",
"gts": "^1.1.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "1.19.1",
"ts-jest": "24.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.7.3"
}
}