-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 750 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 750 Bytes
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
{
"name": "promise-aggregate",
"version": "1.0.0",
"description": "Aggregate calls of functions that return a promise",
"main": "./lib/index.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/grunt --force"
},
"author": "Pascal Pflaum",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-latest": "6.22.0",
"babel-register": "6.23.0",
"chai": "3.5.0",
"eslint": "3.15.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-eslint": "19.0.0",
"grunt-mocha-test": "0.13.2",
"mocha": "3.2.0",
"sinon": "1.17.7"
}
}