-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 854 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
{
"name": "marcosc-async",
"version": "4.0.3",
"description": "Lightweight promise/generator machinery.",
"main": "lib/async.js",
"scripts": {
"test": "mocha test/*.js",
"pretest": "npm run jshint && npm run jscs",
"jshint": "jshint lib test",
"jscs": "jscs lib test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/marcoscaceres/async.git"
},
"keywords": [
"async",
"generators",
"promises",
"functional"
],
"author": "Marcos Caceres",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/marcoscaceres/async/issues"
},
"homepage": "https://github.com/marcoscaceres/async#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"mocha": "^3.2.0"
},
"engines": ">=4"
}