forked from N00ts/vue3-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.51 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
{
"name": "vue3-treeview",
"version": "0.3.8",
"private": false,
"library": "vue3-treeview",
"license": "MIT",
"description": "A simple vue js 3 treeview component",
"author": "Tristan Fontaine <[email protected]>",
"scripts": {
"test": "jest",
"dev": "vite",
"build": "vite build",
"types": "tsc --emitDeclarationOnly",
"bundle": "yarn run build && yarn run types",
"lint": "eslint ./src --ext .vue,.js,.ts",
"lint-fix": "eslint --fix ./src --ext .vue,.js,.ts",
"all": "yarn run test && yarn run lint && yarn run bundle",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"main": "dist/vue3-treeview.umd.js",
"module": "dist/vue3-treeview.es.js",
"style": "dist/style.css",
"types": "dist/**.d.ts",
"files": [
"dist/*"
],
"dependencies": {
"lodash-es": "^4.17.21",
"vue": "^3.1.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.170",
"@types/lodash-es": "^4.17.4",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-typescript": "^4.5.12",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "^4.5.12",
"@vue/compiler-sfc": "^3.0.11",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.10.0",
"istanbul-badges-readme": "^1.4.0",
"typescript": "^3.9.9",
"vite": "^2.6.1",
"vitepress": "^0.15.6",
"vue-jest": "^5.0.0-alpha.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-strongly-recommended",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"no-unused-vars": "off",
"vue/no-ref-as-operand": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"css": "dist/vue3-treeview.css",
"keywords": [
"treeview",
"vue",
"vue3",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/N00ts/vue3-treeview.git"
},
"bugs": {
"url": "https://github.com/N00ts/vue3-treeview/issues"
},
"homepage": "https://github.com/N00ts/vue3-treeview#readme",
"directories": {
"doc": "docs",
"test": "tests"
}
}