-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
107 lines (107 loc) · 3.13 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
98
99
100
101
102
103
104
105
106
107
{
"name": "jupyterlab-sparkmonitor",
"version": "4.1.0",
"description": "Jupyter Lab extension to monitor Apache Spark Jobs",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjafer/jupyterlab-sparkmonitor.git"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"Spark",
"sparkmonitor"
],
"main": "lib/index.js",
"author": {
"name": "Krishnan R",
"email": "[email protected]"
},
"maintainers": [
{
"name": "itsjafer",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/itsjafer/jupyterlab-sparkmonitor/issues"
},
"homepage": "https://github.com/itsjafer/jupyterlab-sparkmonitor#readme",
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.4",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-monorepo": "^0.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"flow-copy-source": "^2.0.9",
"html-loader": "^0.4.5",
"ify-loader": "^1.0.4",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"style-loader": "^0.18.2",
"typescript": "~4.1.3",
"url-loader": "^0.5.9",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension",
"build:lib": "webpack",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"clean": "rimraf lib jupyterlab_sparkmonior:labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint js/*.js --fix",
"eslint:check": "eslint ."
},
"dependencies": {
"@jupyterlab/application": "^3.0.4",
"@jupyterlab/apputils": "^3.0.7",
"@jupyterlab/cells": "^3.0.4",
"@jupyterlab/coreutils": "^5.0.2",
"@jupyterlab/docregistry": "^3.0.4",
"@jupyterlab/mainmenu": "^3.0.3",
"@jupyterlab/notebook": "^3.0.4",
"@jupyterlab/services": "^6.0.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.16.1",
"es6-promise": "^4.2.8",
"jquery": "^3.4.1",
"jquery-ui-bundle": "^1.12.1-migrate",
"kuende-livestamp": "^1.1.2",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"plotly.js": "^1.51.1",
"uuid": "^7.0.2",
"vis-timeline": "^7.3.4",
"webpack": "^5.33.2"
},
"jupyterlab": {
"extension": "lib/index",
"outputDir": "sparkmonitor/labextension"
},
"files": [
"lib/*",
"js/*"
]
}