This repository has been archived by the owner on Dec 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
50
51
52
53
54
{
"name": "@whsha/classes",
"version": "2.4.4",
"description": "The type defintions to manage and create classes for the WHS Helper App",
"license": "GPL-3.0",
"scripts": {
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "tsc -b --clean",
"lint": "tslint --project ./tsconfig.json",
"build": "tsc -p tsconfig.json",
"test": "jest --verbose",
"testcov": "jest --coverage --verbose",
"release": "standard-version --sign"
},
"husky": {
"hooks": {
"pre-commit": "yarn typecheck && yarn lint",
"pre-push": "yarn typecheck && yarn lint && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^24.9.0",
"@types/uuid": "^3.4.0",
"commitlint": "^8.3.4",
"husky": "^4.0.10",
"jest": "^24.9.0",
"standard-version": "^7.0.1",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@badrap/result": "^0.2.6",
"dayjs": "^1.8.19",
"mobx": "^5.15.4",
"mobx-persist": "^0.4.1",
"uuid": "^3.4.0"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
}
}