forked from rlwhatley3/awaits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 989 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
{
"name": "awaits-until",
"version": "7.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",
"build": "npm run clean && tsc",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rlwhatley3/awaits.git"
},
"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",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"babel": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}