-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.18 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-json-api",
"version": "1.0.0",
"description": "A JSON:API adapter for Vuex ORM.",
"module": "src/index.js",
"scripts": {
"watch": "webpack --watch --mode=production",
"build": "webpack --mode=production",
"lint": "eslint --fix -- \"{src,spec}/**/*.js\" \"*.js\"",
"test": "jest",
"release": "node -- scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scalient/vuex-orm-json-api.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"vuex-orm-plugin",
"axios",
"json-api"
],
"author": "Roy Liu",
"license": "Apache-2.0",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"peerDependencies": {
"@vuex-orm/core": ">=0.36.0"
},
"dependencies": {
"axios": "latest"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@vuex-orm/core": ">=0.36.0",
"axios-mock-adapter": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"jest": "latest",
"vue": "latest",
"vuex": "latest",
"webpack": "latest"
}
}