-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "wisersport",
"version": "0.2.1",
"description": "Wiser Sport core engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint -p tsconfig.json",
"cover": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"author": "Low Jeng Lam <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/jest": "^26.0.4",
"coveralls": "^3.0.3",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.0.3",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.1"
},
"dependencies": {
"deep-diff": "^1.0.2"
}
}