-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.48 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.48 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "easyapi-json-editor",
"version": "1.0.10",
"description": "EasyAPI JSON 编辑器",
"author": "EasyAPI",
"keywords": [
"easyapi",
"vue",
"json",
"editor"
],
"main": "./src/index.js",
"module": "./dist/easyapi-json-editor.js",
"repository": {
"type": "git",
"url": "git+https://github.com/easyapi/easyapi-json-editor.git"
},
"homepage": "https://github.com/easyapi/easyapi-json-editor",
"bugs": {
"url": "https://github.com/easyapi/easyapi-json-editor/issues"
},
"license": "Apache-2.0",
"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"
},
"dependencies": {
"highlight.js": "^11.3.1",
"vue": "^2.6.14",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.15.0",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"resolve-url-loader": "^4.0.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"directories": {
"example": "example"
}
}