-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1019 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "each-async",
"version": "0.0.1",
"description": "each async iterator",
"repository": "https://github.com/petrgrishin/each-async",
"scripts": {
"test": "jest"
},
"author": "Petr Grishin",
"license": "MIT",
"dependencies": {
"async": "^3.1.0"
},
"devDependencies": {
"@types/async": "^3.0.3",
"@types/jest": "^24.0.24",
"@types/node": "^13.1.1",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"collectCoverageFrom": [
"**/*.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"main.ts",
".module.ts"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
}
}