-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "promise-sequences",
"version": "0.0.3",
"description": "A small library to control a sequence of promises with concurrency limiting.",
"author": "Chris Decoster",
"license": "MIT",
"main": "build/promise-sequences.js",
"scripts": {
"test": "ava tests/**.test.js",
"build": "npm run build:node && npm run build:browser",
"build:node": "webpack --config scripts/webpack-build-node.config.js",
"build:browser": "webpack --config scripts/webpack-build-browser.config.js",
"docs": "jsdoc src/promise-sequences.js -t node_modules/minami -d docs"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"@ava/stage-4"
]
},
"dependencies": {},
"devDependencies": {
"@ava/babel-preset-stage-4": "^1.0.0",
"ava": "^0.18.1",
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-polyfill": "6.7.2",
"babel-preset-es2015": "6.6.0",
"jsdoc": "3.4.0",
"minami": "^1.1.1",
"source-map-support": "0.4.0",
"universal-fetch": "0.0.1",
"webpack": "1.12.14"
}
}