-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.4 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
{
"name": "upcache",
"version": "2.8.2",
"description": "nginx proxy cache key protocols implementations",
"scripts": {
"test": "mocha",
"rock": "version=$(node -p \"require('./package').version\")-1 && name=$(node -p \"require('./package').name\") && echo \"version = '${version}'\" | cat - package.rockspec > ${name}-${version}.rockspec"
},
"mocha": {
"exit": true
},
"repository": {
"type": "git",
"url": "[email protected]:kapouer/upcache.git"
},
"keywords": [
"cache",
"protocols",
"nginx",
"proxy",
"purge",
"lua",
"upstream"
],
"bin": {
"upcache": "bin/upcache.js"
},
"main": "./lib/index.js",
"author": "Jérémy Lal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kapouer/upcache/issues"
},
"dependencies": {
"@kapouer/express-cache-response-directive": "^2.1.0",
"class-deferred": "^1.0.1",
"cookie": "^0.6.0",
"dashdash": "^2.0.0",
"debug": "^4.3.4",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.0.0",
"express": "^4.19.2",
"mocha": "^10.4.0"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"lib/*.js"
]
},
{
"files": [
"test/*.js"
],
"env": {
"mocha": true
}
}
]
}
}