forked from vue-play/vue-play
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "vue-play",
"version": "3.2.0",
"description": "Play with your vue components.",
"license": "MIT",
"repository": "egoist/vue-play",
"author": {
"name": "EGOIST",
"email": "[email protected]",
"url": "github.com/egoist"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "npm run build",
"toc": "markdown-toc -i README.md",
"build": "vbuild -c config/config.cjs.js",
"surge": "npm run play:build && surge -p dist-play -d vue-play-button.surge.sh",
"play": "vbuild -c config/config.play.js -d",
"play:build": "vbuild --config config/config.play.js"
},
"files": [
"dist/play.js",
"dist/app.js",
"dist/preview.js",
"dist/app.css",
"index.js",
"app.js",
"preview.js"
],
"main": "index.js",
"keywords": [
"vue",
"play",
"storybook",
"component",
"ui"
],
"dependencies": {
"array-find-index": "^1.0.2",
"highlight.js": "^9.10.0",
"query-string": "^4.3.2",
"uid": "0.0.2",
"vue-markdown": "^2.1.3",
"vue-router": "^2.3.0",
"vue-slim-modal": "^0.3.0",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.1.2"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-xo": "^0.17.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-vue": "^2.0.1",
"hint.css": "^2.4.1",
"markdown-toc": "^1.1.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"vbuild": "^6.24.2"
}
}