-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "in-the-hopper",
"version": "1.0.2",
"description": "Node.js middleware for extracting data from a request",
"main": "index.js",
"author": {
"name": "Slava Balabanov",
"email": "[email protected]"
},
"bugs": "https://github.com/slavab89/in-the-hopper/issues",
"repository": {
"type": "git",
"url": "https://github.com/slavab89/in-the-hopper"
},
"scripts": {
"commit": "git-cz",
"test": "mocha --recursive --colors",
"coverage": "nyc mocha --recursive",
"coverage:ci": "nyc mocha --recursive && nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"contributors": [
"Slava Balabanov <[email protected]>"
],
"keywords": [
"express",
"koa",
"connect",
"http",
"logger",
"middleware"
],
"engines": {
"node": ">= 8.3"
},
"license": "MIT",
"dependencies": {
"on-finished": "^2.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.0.1",
"commitlint": "^8.1.0",
"coveralls": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"husky": "^3.0.1",
"koa": "^2.7.0",
"lolex": "^4.1.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"standard-version": "^6.0.1",
"supertest": "^4.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}