-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.4 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
{
"name": "@xpyjs/gantt-vue2",
"version": "1.0.4",
"description": "A high-performance vue2 gantt component.",
"author": "jeremyjone",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://docs.xiaopangying.com/gantt/docs/vue2",
"bugs": {
"url": "https://github.com/xpyjs/gantt-vue2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xpyjs/gantt-vue2.git"
},
"keywords": [
"vue",
"vue2",
"gantt",
"vue-gantt"
],
"files": [
"lib",
"src",
"typings",
"package.json",
"README.md"
],
"main": "lib/index.umd.min.js",
"typings": "typings/index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name index src/index.ts",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --config ./webpack.config.js --target lib --name index --dest lib src/index.ts"
},
"dependencies": {
"@vue/composition-api": "1.3.0",
"core-js": "^3.8.3",
"dayjs": "^1.11.2",
"lodash": "^4.17.21",
"vue": "2.6.14"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.0.3",
"eslint-plugin-vuejs-accessibility": "^1.1.0",
"lint-staged": "^11.1.2",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"typescript": "~4.5.5",
"vue-template-compiler": "2.6.14"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}