forked from jsdario/promise-unmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 KB
/
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
52
53
54
{
"name": "promise-unmap",
"version": "0.2.5",
"description": "Await until all promises resolve and reject",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsdario/promise-unmap.git"
},
"keywords": [
"promise",
"map",
"future",
"bluebird",
"async",
"await",
"resolve",
"reject",
"typescript"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdario/promise-unmap/issues"
},
"homepage": "https://github.com/jsdario/promise-unmap#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/jest": "^23.0.0",
"chai": "^4.1.2",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.spec\\.ts$"
}
}