-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "segel",
"description": "Vue component for creating Gantt-like timeline charts for bookings.",
"version": "0.1.4",
"main": "dist/segel.umd.js",
"unpkg": "dist/segel.umd.min.js",
"browser": {
"./sfc": "src/components/main.vue"
},
"author": "Mikael Jorhult",
"license": "MIT",
"keywords": [
"gantt",
"chart",
"timeline",
"schedule",
"calendar",
"bookings",
"vue",
"vuejs"
],
"homepage": "https://github.com/mikaeljorhult/segel",
"bugs": "https://github.com/mikaeljorhult/segel/issues",
"repository": {
"type": "git",
"url": "https://github.com/mikaeljorhult/segel.git"
},
"dependencies": {
"interactjs": "^1.5.3",
"lodash": "^4.17.15"
},
"devDependencies": {
"@vue/cli-service": "^3.9.3",
"husky": "^3.0.1",
"node-sass": "^7.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"sass-loader": "^7.1.0",
"vue": "^2.6.0",
"vue-reactive-provide": "^0.3.0",
"vue-template-compiler": "^2.6.0"
},
"peerDependencies": {
"vue": "^2.6.0"
},
"scripts": {
"precommit": "pretty-quick --staged",
"build": "vue-cli-service build --target lib --name segel ./src/index.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}