forked from leezng/vue-json-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.86 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
{
"name": "vue-json-pretty",
"version": "1.7.1",
"description": "A JSON tree view component that is easy to use and also supports data selection.",
"author": "leezng <[email protected]>",
"main": "lib/vue-json-pretty.js",
"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js",
"build:example": "cross-env EXAMPLE_ENV=true node build/build.js",
"build:dts": "tsc --p tsconfig.dts.json",
"test": "cypress open",
"lint": "eslint --ext .ts,.tsx,.vue src example",
"prepare": "ts-patch install -s"
},
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:leezng/vue-json-pretty.git"
},
"homepage": "https://leezng.github.io/vue-json-pretty",
"keywords": [
"vue",
"json",
"format",
"pretty",
"vue-component"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/leezng/vue-json-pretty/issues"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/compiler-sfc": "^3.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"chalk": "^4.1.1",
"clean-webpack-plugin": "^3.0.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"css-loader": "^5.2.6",
"cssnano": "^4.1.11",
"cypress": "^5.5.0",
"eslint": "^7.29.0",
"eslint-plugin-vue": "^7.11.1",
"eslint-webpack-plugin": "^2.5.4",
"eventsource-polyfill": "^0.9.6",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.2",
"http-proxy-middleware": "^1.3.1",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"mini-css-extract-plugin": "^1.6.0",
"open": "^7.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.7",
"prettier": "^2.3.1",
"selenium-server": "^3.0.1",
"semver": "^7.3.5",
"shelljs": "^0.8.4",
"ts-patch": "^2.0.1",
"typescript": "^4.3.4",
"typescript-transform-paths": "^3.3.1",
"url-loader": "^4.1.0",
"vue": "^3.1.2",
"vue-loader": "^16.2.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.40.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 1%",
"last 10 versions",
"not ie <= 11"
],
"files": [
"lib",
"types"
],
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {}
}