-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "potential",
"version": "2.0.0",
"description": "An ES6 Promises/A+ implementation",
"homepage": "https://github.com/glebec/potential",
"author": {
"name": "Gabriel Lebec",
"email": "[email protected]",
"url": "https://github.com/glebec"
},
"engines": {
"node": ">=6.0.0"
},
"main": "lib",
"license": "MIT",
"scripts": {
"test": "npm run test:lib && npm run test:aplus",
"test:lib": "mocha",
"test:aplus": "promises-aplus-tests test/aplus-adapter",
"test:lib:short": "npm run test:lib -- --reporter progress --bail",
"test:aplus:short": "npm run test:aplus -- --reporter progress --bail",
"test:vett": "npm run test:lib:short && npm run test:aplus:short",
"precommit": "npm run test:lib:short",
"prepush": "npm run test:vett",
"lint": "eslint lib/potential.js lib/extend.js",
"docs": "jsdoc -c jsdoc.conf.json"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-config-fullstack": "^3.0.0",
"eslint-plugin-react": "^7.0.0",
"husky": "^0.13.0",
"jsdoc": "^3.4.3",
"mocha": "^3.0.0",
"promises-aplus-tests": "2.x"
},
"repository": {
"type": "git",
"url": "https://github.com/glebec/potential.git"
},
"bugs": "https://github.com/glebec/potential/issues",
"keywords": [
"potential",
"promise",
"promises",
"promises-a",
"promises-aplus",
"deferred",
"future",
"async",
"asynchronous",
"control flow",
"node"
]
}