forked from wunderdogsw/typescript-training-e1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 813 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 813 Bytes
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": "exercise-one",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest test/*",
"watch": "jest --watch test/*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.4.2",
"ts-jest": "^23.0.1",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.3.3333",
"typestrict": "^1.0.2"
},
"jest": {
"testURL": "file:/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}