forked from davestewart/vuex-pathify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "vuex-pathify",
"version": "1.4.5",
"description": "Ridiculously simple Vuex setup + wiring",
"main": "dist/vuex-pathify.js",
"module": "dist/vuex-pathify.esm.js",
"jsnext:main": "dist/vuex-pathify.esm.js",
"typings": "types/index.d.ts",
"files": [
"dist/*",
"types/*.d.ts"
],
"scripts": {
"dev": "rollup -c build/rollup.js -w",
"build": "rollup -c build/rollup.js",
"docs": "node-sass docs/assets/scss -o docs/assets/css -w docs/assets/scss/**/*.scss & docsify serve docs",
"test": "jest tests/ --verbose",
"test:types": "tsc -p types/test"
},
"author": "Dave Stewart <[email protected]>",
"homepage": "https://github.com/davestewart/vuex-pathify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/vuex-pathify.git"
},
"keywords": [
"vuex",
"store"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/davestewart/vuex-pathify/issues"
},
"dependencies": {
"vue-class-component": "^7.2.6"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-jest": "^24.9.0",
"install": "^0.12.2",
"jest": "^24.9.0",
"npm": "^6.14.9",
"rollup": "^0.67.4",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-uglify": "^3.0.0",
"typescript": "^3.9.7",
"vue": "^2.6.12",
"vuex": "^3.6.0"
},
"peerDependencies": {
"vue": "^2.5.19",
"vuex": "^3.0.1"
}
}