-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
40
41
42
43
44
{
"name": "simple-series-parallel",
"version": "1.0.1",
"description": "A minimalist utility module for running functions in series or parallel",
"main": "index.js",
"scripts": {
"compile": "babel --source-maps -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/mocha/bin/mocha ./test/*",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"author": {
"name": "Jayesh Wadhwani",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jwadhwani/simple-series-parallel.git"
},
"engines": {
"node": ">=0.10.3"
},
"keywords": [
"async",
"asynchronous",
"series",
"parallel"
]
}