forked from yujinpan/el-select-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "el-select-tree",
"version": "2.0.17",
"author": "yujinpan",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "lib/index.js",
"keywords": [
"el-select",
"el-tree",
"el-select-tree"
],
"files": [
"lib"
],
"scripts": {
"publish:beta": "npm version prerelease --preid=beta && npm publish --registry=https://registry.npmjs.org",
"publish:patch": "npm version patch && npm publish",
"version": "npm run build",
"postversion": "git push --all && git push --tags",
"dev": "vite",
"build": "cross-env NODE_ENV=production rollupx",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"start": "npm run dev",
"test": "vitest --environment jsdom",
"docs:dev": "npm run build && vuepress dev docs",
"docs:build": "npm run build && vuepress build docs"
},
"dependencies": {
"core-js": "^3.28.0",
"style-inject": "^0.3.0",
"vue-class-component": "^7.x",
"vue-property-decorator": "^8.x",
"vue-runtime-helpers": "^1.1.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.45",
"@vitejs/plugin-vue2": "^1.1.2",
"@vitejs/plugin-vue2-jsx": "^1.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.1",
"@vue/test-utils": "^1.3.0",
"@vue/tsconfig": "^0.1.3",
"async-validator": "^1.11.5",
"cross-env": "^7.0.3",
"dotenv": "^8.0.0",
"element-ui": "^2.15.10",
"eslint": "8.22.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.4.0",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"path-ops": "^1.0.0",
"prettier": "^2.5.1",
"rollup-plugin-vue": "^5.1.9",
"rollupx": "^3.1.1",
"sass": "^1.54.9",
"typescript": "~4.7.4",
"vite": "^3.2.5",
"vitest": "^0.23.1",
"vue": "^2.7.14",
"vue-tsc": "^0.40.12",
"vuepress": "^1.9.9",
"vuepress-plugin-component-demo": "^1.0.1"
},
"peerDependencies": {
"element-ui": "^2.15.6",
"vue": "^2.x"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/yujinpan/el-select-tree/issues"
},
"homepage": "https://github.com/yujinpan/el-select-tree#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yujinpan/el-select-tree.git"
}
}