-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "besgen",
"version": "0.1.0",
"description": "Basic English Sentence Generator",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"keywords": [],
"homepage": "https://github.com/brkn/besgen/blob/master/README.md",
"bugs": {
"url": "https://github.com/brkn/besgen/issues"
},
"author": "brkn",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "rm -rf coverage/ && jest --coverage",
"type-check": "echo \"type-checking...\" && tsc --noEmit"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && npm run type-check"
}
},
"devDependencies": {
"@types/jest": "25.1.4",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
}
}