-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.29 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
55
{
"name": "awaits-until",
"version": "12.0.0",
"description": "resolves promises to an err, data tuple",
"main": "dist/awaits.js",
"types": "dist/awaits.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"test": "npm run build && jest",
"test-cli": "jest --coverage --collectCoverageFrom=dist/**/*.js && coveralls < coverage/lcov.info",
"build": "npm run clean && tsc",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rlwhatley3/awaits.git"
},
"keywords": [
"await",
"awaits",
"async",
"pool",
"pooling",
"concurrency",
"promise",
"promises",
"utilities",
"node",
"microservices",
"tuple"
],
"author": "raymond whatley",
"license": "ISC",
"bugs": {
"url": "https://github.com/rlwhatley3/awaits/issues"
},
"homepage": "https://github.com/rlwhatley3/awaits#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"coveralls": "^3.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.9.9"
},
"babel": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}