-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
91 lines (91 loc) · 2.43 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vue-json-viewer",
"version": "2.2.22",
"description": "vuejs展示json的组件",
"main": "vue-json-viewer.js",
"files": [
"vue-json-viewer.js",
"ssr.js",
"style.css"
],
"directories": {
"lib": "./lib",
"example": "./example"
},
"scripts": {
"build": "npm run build:browser && npm run build:ssr",
"build:browser": "webpack --config ./build/webpack.config.js",
"build:ssr": "webpack --config ./build/webpack.ssr.config.js",
"example": "webpack-dev-server --config ./example/build/webpack.dev.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenfengjw163/vue-json-viewer.git"
},
"keywords": [
"vue",
"json"
],
"homepage": "https://github.com/chenfengjw163/vue-json-viewer#readme",
"author": {
"name": "陈峰",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chenfengjw163/vue-json-viewer/issues"
},
"contributors": [
{
"name": "陈峰",
"email": "[email protected]"
},
{
"name": "Sacha Stafyniak",
"email": "[email protected]"
}
],
"dependencies": {
"clipboard": "^2.0.4"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-plugin-vue": "^5.0.0-beta.3",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^0.6.2",
"vue": "^2.6.9",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.9",
"webpack": "=4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.1.0"
},
"peerDependencies": {
"vue": "^2.6.9"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}