forked from SebastianSmolorz/plugin-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
{
"name": "@vuex-orm/plugin-axios",
"version": "0.2.2",
"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": "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",
"babel": {
"sourceType": "unambiguous"
},
"browserslist": [
"> 1%",
"IE 11",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@vuex-orm/core": "^0.26.2",
"lodash-es": "^4.17.11"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.1",
"babel-loader": "^8.0.5",
"eslint": "^5.4.0",
"eslint-plugin-import": "^2.14.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.1.0"
}
}