-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 871 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
{
"name": "yahtzee",
"version": "1.0.0",
"author": "Hauke Stange <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint --type-check -p . src/**/*.ts",
"watch": "tsc -p . -w",
"test": "yarn lint && jest --coverage",
"build": "rimraf build && tsc -p .",
"precommit": "yarn test",
"prepush": "yarn test && yarn build"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"devDependencies": {
"@types/jest": "^19.2.3",
"@types/node": "^7.0.31",
"husky": "^0.13.3",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.4",
"tslint": "^5.3.2",
"typescript": "^2.3.3"
}
}