forked from getify/asynquence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 841 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
{
"name": "asynquence",
"version": "0.10.3",
"description": "promise-style async sequence flow-control",
"main": "./asq.src.js",
"scripts": {
"test": "./node-tests.js",
"build-core": "./build-core.js",
"build": "npm run build-core",
"prepublish": "npm run build-core"
},
"devDependencies": {
"uglify-js": "~2.4.24",
"native-promise-only": "latest",
"es-feature-tests": "latest",
"babel-core": "~5.8.12"
},
"repository": {
"type": "git",
"url": "git://github.com/getify/asynquence.git"
},
"keywords": [
"async",
"flow-control",
"sequences",
"promise",
"iterator",
"generator"
],
"bugs": {
"url": "https://github.com/getify/asynquence/issues",
"email": "[email protected]"
},
"homepage": "http://github.com/getify/asynquence",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}