-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"name": "vue-edit-json",
"version": "1.0.3",
"description": "View and edit JSON as an vue component",
"author": "Fingerpich <[email protected]>",
"scripts": {
"dev": "webpack-dev-server --watch --progress --config webpack.example.js --open --hot --host 127.0.0.1",
"buildDemo": "webpack --progress --config webpack.example.js --mode production",
"example": "rm -rf ./example/dist/*.js && rm -rf ./example/dist/*.html && webpack --progress --config webpack.example.js",
"build": "webpack --progress --config webpack.config.js",
"lint": "eslint --ext .js,.vue src",
"release": "npm version patch && npm publish",
"dashboard": "webpack-dashboard -- webpack-dev-server --watch --progress --config webpack.example.js --open --hot --host 0.0.0.0",
"analyze": "rimraf dist && webpack --json | webpack-bundle-size-analyzer",
"build example": "rimraf docs && webpack --progress --config webpack.example.js"
},
"keywords": [
"Vue",
"json"
],
"main": "./src/index.js",
"module": "./dist/vue-edit-json.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fingerpich/vue-edit-json.git"
},
"homepage": "https://github.com/fingerpich/vue-edit-json",
"license": "MIT",
"bugs": {
"url": "https://github.com/fingerpich/vue-edit-json/issues"
},
"dependencies": {
"vue": "^2.2.2"
},
"devDependencies": {
"@webpack-cli/migrate": "^0.1.0",
"autoprefixer": "^9.1.1",
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.24.1",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "4.0.5",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"flow-bin": "^0.78.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"highlight.js": "^9.10.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"node-sass": "^4.9.3",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"rimraf": "^2.6.0",
"style-loader": "^0.22.0",
"url-loader": "^1.1.0",
"vue-hot-reload-api": "^2.3.0",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.3.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dashboard": "^2.0.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.3",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}