-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.27 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
83
84
85
86
87
88
89
{
"name": "bifrost-proxy",
"version": "1.4.0",
"main": "lib/index.js",
"author": "zman",
"license": "MIT",
"scripts": {
"lint": "eslint 'lib/**/*.{js,ts,tsx}' --fix",
"stylelint": "stylelint --fix lib/**/*.{less,scss,css}",
"test": "jest --rootDir ./lib",
"test:w": "jest --watchAll --rootDir ./lib --passWithNoTests",
"prepublishOnly": "npm run test ",
"release": "npm run test && standard-version"
},
"dependencies": {
"hagent": "^0.7.5",
"lru-cache": "^5.1.1",
"uuid": "^3.4.0"
},
"files": [
"lib"
],
"devDependencies": {
"@a8k/changelog": "^2.5.3",
"@commitlint/cli": "^8.3.6",
"commitizen": "^3.1.2",
"commitlint-config-cz": "^0.12.1",
"cz-customizable": "^6.9.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"node-fetch": "^2.7.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"standard-version": "^7.1.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.21.0",
"ws": "^8.15.1"
},
"lint-staged": {
"*.{css,less,scss}": [
"prettier --write",
"stylelint --fix",
"git add"
],
"*.{ts,tsx,json,md}": [
"prettier --write",
"git add"
],
"*.{jsx,js}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@a8k/changelog/cz-config.js"
}
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hxfdarling/bifrost-proxy.git"
},
"bugs": {
"url": "https://github.com/hxfdarling/bifrost-proxy/issues"
},
"homepage": "https://github.com/hxfdarling/bifrost-proxy#readme",
"description": "为 Nodejs 提供全局代理服务,可以拦截所有从 Nodejs 发出的请求,并配置自定义代理服务器"
}