forked from popomore/koa-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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": "@kitten-team/koa-cache-proxy",
"version": "1.0.3",
"description": "Proxy middleware for koa",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext .js .",
"prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"release": "/bin/bash scripts/release.sh"
},
"dependencies": {
"iconv-lite": "^0.2.11",
"lru-cache": "^4.1.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"keywords": [
"koa",
"middleware",
"cache",
"proxy"
],
"devDependencies": {
"conventional-changelog-cli": "^2.0.5",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"koa": "^2.5.2",
"lint-staged": "^7.2.2",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/KittenTeam/koa-cache-proxy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/KittenTeam/koa-cache-proxy"
},
"homepage": "https://github.com/KittenTeam/koa-cache-proxy",
"license": "MIT"
}