-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 KB
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
{
"name": "hotproxy",
"version": "1.0.4",
"main": "index.js",
"description": "A better http-proxy-middleware with hot update config and cli",
"author": "imcuttle <moyuyc95@gmail.com>",
"bin": "./bin.js",
"scripts": {
"test": "jest",
"example": "node bin.js --config-file=./example/hotproxy.config.js",
"prepublishOnly": "npm test",
"version": "npm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"sideEffects": false,
"engines": {
"node": ">=8"
},
"keywords": [
"imcuttle",
"hotproxy",
"hotproxy"
],
"typings": "index.d.ts",
"license": "MIT",
"repository": "imcuttle/hotproxy",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^23.3.14",
"conventional-changelog-cli": "^2.0.23",
"husky": "^3.0.3",
"jest": "^23.6.0",
"pify": "^4.0.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"supertest": "^4.0.2"
},
"dependencies": {
"express": "^4.17.1",
"find-up": "^4.1.0",
"hot-module-require": "^3.1.0",
"http-proxy-middleware": "^0.19.1",
"optimist": "^0.6.1"
}
}