-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
136 lines (136 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@ladjs/koa-cache-responses",
"description": "Caching middleware for Koa using koa-cash and route pattern-based matching with path-to-regexp. Made for Lad.",
"version": "0.0.3",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"ava": {
"verbose": true
},
"bugs": {
"url": "https://github.com/ladjs/koa-cache-responses/issues",
"email": "[email protected]"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"dependencies": {
"lodash": "^4.17.15",
"ms": "^2.1.2",
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ladjs/redis": "^1.0.4",
"ava": "latest",
"codecov": "latest",
"cross-env": "latest",
"eslint": "6.x",
"eslint-config-xo-lass": "latest",
"fast-safe-stringify": "^2.0.7",
"fixpack": "latest",
"husky": "latest",
"koa": "^2.12.1",
"koa-cash": "^4.0.3",
"lint-staged": "latest",
"node-cache": "^5.1.1",
"nyc": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"supertest": "^4.0.2",
"xo": "0.25"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/ladjs/koa-cache-responses",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"alternative",
"asset",
"assets",
"cache",
"caching",
"cash",
"cdn",
"cloudfront",
"content",
"css",
"delivery",
"file",
"hash",
"http",
"image",
"images",
"img",
"in-memory",
"ioredis",
"javascript",
"js",
"koa",
"lad",
"lass",
"memory",
"middleware",
"modified",
"mongo",
"mongoose",
"network",
"redis",
"responses",
"rev",
"revision",
"s3",
"script",
"scripts",
"serve",
"server",
"static",
"storage",
"store"
],
"license": "MIT",
"main": "index.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"publishConfig": {
"access": "public"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/koa-cache-responses"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "xo && remark . -qfo",
"nyc": "cross-env NODE_ENV=test nyc ava",
"test": "yarn run lint && yarn run ava",
"test-coverage": "yarn run lint && yarn run nyc"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
]
}
}