-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
{
"name": "express-cache-middleware",
"version": "1.0.1",
"description": "An Express middleware designed to intercept responses and cache them.",
"main": "src/index.js",
"keywords": [
"express",
"middleware",
"cache",
"caching",
"cache-manager",
"mung",
"munge",
"intercept",
"transform"
],
"repository": "https://github.com/tprobinson/express-cache-middleware.git",
"bugs": {
"url": "https://github.com/tprobinson/express-cache-middleware.git/issues"
},
"homepage": "https://github.com/tprobinson/express-cache-middleware#readme",
"license": "MIT",
"author": {
"name": "Trevor Robinson",
"url": "https://keybase.io/tpr"
},
"scripts": {
"lint": "eslint src/ test/",
"test": "yarn run lint && jest --maxWorkers=4",
"test:coveralls": "yarn run test --coverage --coverageReporters=text-lcov | yarn exec coveralls",
"doc": "esdoc",
"docdev": "esdoc && serve -s docs"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"dependencies": {
"express-mung": "git+https://github.com/tprobinson/express-mung#sendFork"
},
"devDependencies": {
"babel-jest-assertions": "^0.1.0",
"cache-manager": "2.x",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"jest": "^24.7.1",
"random-words": "^1.1.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"cache-manager": "2.x"
}
}