-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
109 lines (109 loc) · 3.3 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-json-ui-editor",
"version": "1.0.0",
"description": "Edit JSON in UI form with JSON Schema and Vue.js",
"author": "YourtionGuo <[email protected]>",
"scripts": {
"test": "npm run lint && jest --config test/jest.conf.js --coverage",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src test example --fix",
"dist": "npm test && webpack --config build/webpack.dist.conf.js && export TEST_LIB=true && jest --config test/jest.conf.js",
"prepublishOnly": "npm run dist && cat ./coverage/lcov.info | coveralls",
"docs": "vuedoc.md src/JsonEditor.vue",
"build": "node build/build.js"
},
"main": "lib/json-editor.min.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yourtion/vue-json-ui-editor.git"
},
"keywords": [
"json",
"schema",
"json-schema",
"vue-editor",
"vue",
"vue-json-schema",
"vue-json-editor",
"json-ui-schema",
"json-editor"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yourtion/vue-json-ui-editor/issues"
},
"homepage": "https://github.com/yourtion/vue-json-ui-editor#readme",
"peerDependencies": {
"vue": "*"
},
"devDependencies": {
"@vue/server-test-utils": "^1.0.0-beta.26",
"@vue/test-utils": "^1.0.0-beta.18",
"@vuedoc/md": "^1.5.0",
"autoprefixer": "^8.5.2",
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.3.2",
"copy-webpack-plugin": "^4.5.2",
"coveralls": "^3.0.2",
"css-loader": "^0.28.0",
"element-ui": "^2.4.11",
"eslint": "^5.9.0",
"eslint-config-guo": "^0.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-vue": "^5.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.0",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"ora": "^2.1.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^0.5.8",
"vue": "^2.5.17",
"vue-jest": "^3.0.1",
"vue-loader": "^13.3.0",
"vue-server-renderer": "^2.5.17",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.28.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}