forked from anton-shchyrov/chartjs-plugin-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "chartjs-plugin-gantt",
"version": "0.9.0",
"description": "Gantt series fo ChartJS library",
"main": "./dist/chartjs-plugin-gantt.js",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"chart.js": "global:Chart"
},
"scripts": {
"build-dev": "gulp build-dev",
"build": "gulp build-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anton-shchyrov/chartjs-plugin-gantt.git"
},
"keywords": [
"chartjs",
"plugin",
"gantt",
"series"
],
"author": "Anton Shchyrov",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/anton-shchyrov/chartjs-plugin-gantt/issues"
},
"homepage": "https://github.com/anton-shchyrov/chartjs-plugin-gantt#readme",
"devDependencies": {
"browserify": "^16.2.3",
"browserify-shim": "^3.8.14",
"esmify": "^2.1.1",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.7",
"gulp-streamify": "^1.0.2",
"gulp-uglify-es": "^1.0.4",
"vinyl-source-stream": "^2.0.0",
"eslint": "^5.16.0"
},
"dependencies": {
"chart.js": "^2.9.4"
}
}