-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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": "promise-value",
"version": "1.3.1",
"description": "A tiny wrapper for Promise to carry a promise and (if known) a value, plus a resolved flag -- this makes it easy to bridge between async promise-based code, and single-thread code.",
"main": "./bin/promise-value.js",
"repository": {
"type": "git",
"url": "git+https://github.com/winterstein/promise-value.git"
},
"keywords": [
"Promise",
"single-thread",
"value",
"wrapper"
],
"author": "@winterstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/winterstein/promise-value/issues"
},
"homepage": "https://github.com/winterstein/promise-value#readme",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1"
},
"scripts": {
"build": "babel src --out-dir bin",
"watch": "babel src --out-dir bin --watch",
"prepare": "npm run build"
}
}