forked from 75team-biz/vue-flow-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "v-flow",
"version": "1.1.0",
"description": "A simple waterfall directive for Vue.js",
"main": "index.js",
"scripts": {
"watch-compile": "rollup -c ./rollup.config.js -w",
"serve": "browser-sync start --server --files \"dist/*.js, *.html\"",
"build": "rollup -c ./rollup.config.js",
"develop": "run-p watch-compile serve",
"start": "run-s build develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/v-comp/v-flow.git"
},
"keywords": [
"vue",
"flow",
"grid",
"flowgrid"
],
"author": "NangeGao",
"license": "MIT",
"bugs": {
"url": "https://github.com/v-comp/v-flow/issues"
},
"homepage": "https://github.com/v-comp/v-flow#readme",
"devDependencies": {
"browser-sync": "^2.18.8",
"npm-run-all": "^4.0.2",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"deep-diff": "^0.3.4"
}
}