-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "babybird",
"version": "0.0.1-git",
"description": "Very fast standards-compliant ES2015 promises.",
"main": "index.js",
"scripts": {
"jscs": "jscs .",
"jscs-fix": "jscs --fix .",
"lint": "jshint . && npm run jscs",
"lint-no-0.8": "node -e 'process.exit(/v0[.][0-8][.]/.test(process.version) ? 0 : 1)' || npm run lint",
"mocha": "mocha",
"test": "npm run lint-no-0.8 && npm run mocha",
"bench": "./bench doxbee node 20000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cscott/babybird.git"
},
"keywords": [
"promise",
"promises-aplus"
],
"author": "C. Scott Ananian",
"license": "MIT",
"bugs": {
"url": "https://github.com/cscott/babybird/issues"
},
"homepage": "https://github.com/cscott/babybird#readme",
"dependencies": {
"asap": "^2.0.3",
"is-arguments": "^1.0.2"
},
"devDependencies": {
"glob": "^6.0.1",
"jscs": "~2.7.0",
"jshint": "^2.9.1-rc1",
"mocha": "^2.3.4",
"promises-aplus-tests": "^2.1.2",
"test262": "git://github.com/cscott/test262.git#master",
"test262-parser": "git://github.com/cscott/test262-parser.git#gh-11"
}
}