-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "prfun",
"version": "2.1.5+git",
"description": "Helper functions for ES6 promises",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"lint": "npm run eslint",
"lint-no-0.x": "node -e 'process.exit(/v0[.][0-9]+[.]/.test(process.version) ? 0 : 1)' || npm run lint",
"mocha": "if node -e 'process.exit(/v0[.]([0-9]|10)[.]/.test(process.version) ? 0 : 1)' ; then mocha ; else mocha --harmony ; fi",
"test": "npm run lint-no-0.x && npm run mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/cscott/prfun"
},
"keywords": [
"promise",
"promises",
"es6",
"harmony"
],
"author": "C. Scott Ananian",
"license": "MIT",
"bugs": {
"url": "https://github.com/cscott/prfun/issues"
},
"homepage": "https://github.com/cscott/prfun",
"devDependencies": {
"core-js": "^2.5.3",
"eslint": "^4.14.0",
"eslint-config-node-style-guide": "^3.0.0",
"mocha": "^3.5.0"
},
"optionalDependencies": {
"core-js": "^2.5.3"
}
}