-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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": "vue-resizable-box",
"version": "1.2.4",
"description": "A vue resizable container component.",
"main": "dist/vue-resizable-box.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --progress --hot",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"pub": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilixie/vue-resizable-box.git"
},
"keywords": [
"vue",
"vue2",
"resizable-box",
"expand",
"resize",
"collapsible",
"resizable",
"draggable",
"extensible"
],
"author": "guilixie <[email protected]>",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/guilixie/vue-resizable-box/issues"
},
"homepage": "https://github.com/guilixie/vue-resizable-box#readme",
"peerDependencies": {
"vue": "^2.6.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-loader": "^15.6.4",
"vue-template-compiler": "^2.6.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"vue": "2.6.6"
}
}