-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "axios-cache-plugin",
"version": "0.1.0",
"description": "Help you cache GET request when using axios.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jin5354/axios-cache-plugin"
},
"bugs": {
"url": "https://github.com/jin5354/axios-cache-plugin/issues"
},
"scripts": {
"test": "nyc ava --verbose",
"build": "NODE_ENV=production webpack --progress --config build/webpack.build.config.js"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "jin5354<[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"eslint-config-wdfe": "^0.3.2",
"eslint-loader": "^1.8.0",
"nyc": "^11.0.2",
"regenerator-runtime": "^0.10.5",
"webpack": "^3.0.0"
}
}