-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 933 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
{
"name": "aip",
"version": "0.1.0",
"description": "Hybrid async iterator promise like",
"main": "index.js",
"repository": "https://github.com/vitarn/aip.git",
"author": "colder <[email protected]>",
"license": "MIT",
"scripts": {
"pretest": "tsc --noEmit",
"test": "jest --coverage --maxWorkers=4",
"testing": "jest --watch",
"release": "standard-version",
"prepack": "tsc"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/node": "^10.0.3",
"jest": "^22.4.3",
"standard-version": "^4.3.0",
"ts-jest": "^22.4.2",
"typescript": "^2.8.1"
},
"files": [
"index.js",
"index.d.ts",
"Symbol.asyncIterator.js"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.*\\.(test)\\.(t)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}