forked from prepair/api-get-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "@prepair/api-get-cache",
"version": "0.0.1",
"description": "Node http transparent proxy with in memory caching.",
"main": "index.js",
"scripts": {
"start": "node server",
"dev": "nodemon --watch server server",
"lint": "eslint server",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/api-get-cache.git"
},
"keywords": [
"api",
"cache",
"hack"
],
"author": "Szabolcs Kurdi <szabolcs.kurdi@gmail.com> (https://github.com/szkrd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/api-get-cache/issues"
},
"homepage": "https://github.com/prepair/api-get-cache#readme",
"lint-staged": {
"server/**/*.js": "eslint"
},
"devDependencies": {
"eslint": "4.16.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"lint-staged": "^6.0.1",
"nodemon": "1.14.11"
},
"dependencies": {
"winston": "2.4.0"
}
}