-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 763 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
{
"name": "async-iterator",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest --verbose --no-watchman --runInBand --coverage",
"cache:clear": "jest --clearCache",
"ts": "npm run ts-node"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.9.4",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
},
"dependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
},
"testRegex": "((\\.|/)spec)\\.ts$"
}
}