-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
56 lines (56 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
56
{
"name": "vue-json-edit",
"version": "1.4.3",
"description": "visual JSON editor built as an vue component",
"author": "Jinkin1995 <[email protected]>",
"keywords": [
"vue",
"json"
],
"main": "./src/index.js",
"module": "./dist/vue-json-edit.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jinkin1995/vue-json-edit.git"
},
"homepage": "https://github.com/jinkin1995/vue-json-edit",
"bugs": {
"url": "https://github.com/jinkin1995/vue-json-edit/issues"
},
"license": "Apache 2",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.config.js",
"example": "rm -rf ./example/dist/*.js && rm -rf ./example/dist/*.html && webpack --progress --config webpack.config.js",
"build": "webpack --progress --config webpack.build.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"resolve-url-loader": "^3.0.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.8",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"highlight.js": "^9.15.6",
"lodash.clonedeep": "^4.5.0",
"vue": "^2.6.8",
"vuedraggable": "^2.23.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}