-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "promised-hooks",
"version": "3.1.1",
"description": "Middleware (hooks) utility for your Promises",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"lint": "./node_modules/eslint/bin/eslint.js ./lib ./test",
"pretest": "npm run lint",
"test": "nyc mocha test --recursive --colors",
"coverage": "rm -rf ./coverage && nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"hooks",
"promise",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/sebelga/promised-hooks.git"
},
"author": "Sébastien Loix",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"arrify": "^2.0.1",
"is": "^3.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.6",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"sinon": "^7.4.2",
"standard-version": "^7.0.0"
}
}