forked from davestewart/vuex-pathify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "vuex-pathify",
"version": "1.0.0",
"description": "Ridiculously simple Vuex wiring + setup",
"main": "dist/vuex-pathify.js",
"module": "dist/vuex-pathify.esm.js",
"jsnext:main": "dist/vuex-pathify.esm.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "npm run demo & npm run watch",
"watch": "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",
"demo": "cd demo && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": {
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"node-sass": "^4.7.2",
"rollup-plugin-buble": "^0.19.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-uglify": "^3.0.0"
}
}