forked from vuex-orm/plugin-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "@vuex-orm/plugin-axios",
"version": "0.5.1",
"description": "Vuex-ORM Plugin to sync the data against a RESTful API.",
"main": "dist/index.js",
"scripts": {
"watch": "webpack --watch --mode=production",
"build": "webpack --mode=production",
"lint": "eslint src/**/*.js test/**/*.js",
"test": "jest"
},
"repository": {
"type": "git+https://github.com/vuex-orm/plugin-axios.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"vuex-orm-plugin",
"axios",
"http"
],
"author": "Kani Robinson",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {
"@vuex-orm/core": "^0.31.6",
"axios": "^0.18.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.5.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
}
}