forked from arunvelsriram/dag-schedule-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "dag_schedule_graph",
"description": "Airflow plugin for visualising DAG schedules within 24 hour window of a day.",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"build:production": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arunvelsriram/dag-schedule-graph.git"
},
"homepage": "https://github.com/arunvelsriram/dag-schedule-graph",
"keywords": [
"airflow",
"plugin",
"DAG",
"airflow-scheduler",
"visualisation"
],
"author": "Arunvel Sriram",
"license": "MIT",
"dependencies": {
"chart.js": "^2.9.4",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"randomcolor": "^0.6.2"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^3.0.0",
"jest": "^26.6.3",
"moment-locales-webpack-plugin": "^1.2.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
}
}