-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "flowgrid",
"version": "3.0.0",
"author": {
"name": "tm-roamer",
"email": "[email protected]"
},
"description": "flowgrid is a component for Vue.js. 一个基于vue的轻量简单的网格流布局插件.",
"keywords": [
"vue",
"flowgrid",
"grid",
"flow",
"layout",
"stack",
"drag drop"
],
"main": "./docs/flowgrid.min.js",
"module": "./src/index.js",
"scripts": {
"start": "npm run dev",
"dev": "./node_modules/.bin/rollup --config --watch",
"build": "./node_modules/.bin/rollup --config",
"min": "./node_modules/.bin/uglifyjs docs/flowgrid.js -c -m -o docs/flowgrid.min.js --source-map",
"prod": "npm run build && npm run min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tm-roamer/flowgrid.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tm-roamer/flowgrid/issues"
},
"homepage": "https://github.com/tm-roamer/flowgrid#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-vue2": "^0.8.0",
"rollup-watch": "^3.2.2",
"uglify-js": "^3.0.28",
"vue": "^2.3.3"
}
}