-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 850 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
{
"name": "serialized-array-runner",
"version": "1.1.0",
"description": "ES6 Class which enables running functions returning promises successively and capturing the individual resolved data.",
"main": "./lib/serialized-array-runner.js",
"directories": {
"lib": "./lib",
"doc": "./doc",
"test": "./test",
"example": "./example"
},
"scripts": {
"test": "node_modules/.bin/mocha -t 10000 --async-only --reporter spec --ui bdd test",
"generateDocs": "node_modules/.bin/jsdoc lib -d doc"
},
"keywords": [
"promises",
"array",
"es6",
"class"
],
"author": "Bill Hodges",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wildbillh/serialized-array-runner"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdoc": "^3.4.2",
"mocha": "^3.1.2"
}
}