-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "vuex-easy-access",
"version": "3.1.8",
"description": "Unified syntax with simple set() and get() store access + auto generate mutations",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"test": "ava",
"build": "rollup -c build/rollup.js && npm run test",
"watch": "rollup -c build/rollup.js --watch",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./docs/.vuepress/deploy.sh",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mesqueeb/vuex-easy-access.git"
},
"keywords": ["vuex", "store", "plugin", "vue", "boilerplate"],
"author": "Luca Ban - Mesqueeb",
"license": "MIT",
"bugs": {
"url": "https://github.com/mesqueeb/vuex-easy-access/issues"
},
"homepage": "https://github.com/mesqueeb/vuex-easy-access#readme",
"devDependencies": {
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.1",
"firebase": "^7.5.0",
"np": "^7.4.0",
"prettier": "^2.2.1",
"rollup": "^1.27.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.25.2",
"tsconfig-paths": "^3.9.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"vue": "^2.6.10",
"vuepress": "^1.2.0",
"vuex": "^3.1.2"
},
"dependencies": {
"find-and-replace-anything": "^2.0.4",
"is-what": "^3.11.3",
"merge-anything": "^2.4.2"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"ava": {
"helpers": ["**/helpers/**/*"]
},
"np": {
"yarn": false,
"branch": "production"
}
}