-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "cachecontroller",
"version": "1.2.0",
"description": "a cache controller for cache data from request, can be auto read when a request have finished. and auto remove the least use cache.",
"main": "./dist/cache.common.js",
"module": "dist/cache.esm.js",
"unpkg": "dist/cache.js",
"browser": "dist/cache.js",
"jsdelivr": "dist/cache.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"release": "standard-version",
"dev": "rollup -c -w",
"serve": "node ./example/server.js",
"build:prod": "NODE_ENV=production ./node_modules/.bin/rollup -c"
},
"keywords": [
"cache"
],
"files": [
"src",
"dist/*.js",
"types/*.d.ts"
],
"author": "emjio",
"license": "MIT",
"devDependencies": {
"eslint": "^7.27.0",
"express": "^4.18.2",
"express-urlrewrite": "^2.0.0",
"rollup": "^3.9.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-watch": "^4.3.1",
"standard-version": "^9.5.0",
"webpack": "^5.75.0",
"webpack-dev-middleware": "^6.0.1"
},
"dependencies": {
"axios": "^1.3.0",
"lodash": "^4.17.21"
}
}