-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1022 Bytes
/
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
{
"name": "cruorin",
"version": "4.2.0",
"description": "A light extensible HTTP GET reverse proxy cache server.",
"main": "lib/index.js",
"scripts": {
"play": "node start.js",
"lint": "eslint .",
"test": "rm -rf /tmp/cruorin && eslint . && nyc --reporter=lcov mocha test/index.js --exit",
"lcov": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaapx/cruorin.git"
},
"keywords": [
"cache",
"proxy",
"server"
],
"author": "Sartrey Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaapx/cruorin/issues"
},
"homepage": "https://github.com/gaapx/cruorin#readme",
"dependencies": {
"crc": "^3.8.0",
"httply": "^0.2.0",
"lru-cache": "^6.0.0",
"node-fetch": "^2.6.1",
"typefo": "^1.1.2"
},
"devDependencies": {
"coveralls": "^3.0.5",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0"
}
}