-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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": "promise-controller",
"version": "1.0.0",
"description": "Advanced control of JavaScript promises",
"author": {
"name": "Vitaliy Potapov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/promise-controller.git"
},
"engines": {
"node": ">=8"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint src test",
"test": "mocha test/setup.js test/specs",
"test:installed": "node scripts/install-local && LIB_PATH=../.installed/node_modules/promise-controller npm t",
"ci": "run-s lint test test:installed",
"docs": "node scripts/docs",
"prerelease": "run-s lint test test:installed",
"release": "npm version $VER && npm publish && git push --follow-tags --no-verify",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm t",
"pre-push": "run-s lint test"
}
},
"lint-staged": {
"{src,test}/**/*.js": "eslint"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"husky": "^3.1.0",
"install-local": "^1.0.0",
"jsdoc-to-markdown": "^5.0.3",
"lint-staged": "^9.4.3",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"sinon": "^7.5.0"
},
"keywords": [
"promise",
"promises",
"promise-library",
"promise-wrapper",
"promise-control",
"promise-api"
],
"license": "MIT"
}