-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "jupyterlab-gcloud-auth",
"version": "0.3.0",
"description": "Plugin that allows to run gclout auth directly from the Notebooks.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/gclouduniverse/jupyterlab-gcloud-auth",
"bugs": {
"url": "https://github.com/gclouduniverse/jupyterlab-gcloud-auth/issues"
},
"license": "BSD-3-Clause",
"author": "Abdalla Abdulmonem, Viacheslav Kovalevskyi",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/*.css",
"style/images/*.png"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gclouduniverse/jupyterlab-gcloud-auth.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^1.0.2",
"@jupyterlab/mainmenu": "^0.8.0",
"@types/react": "^15.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@phosphor/widgets": "^1.9.0",
"@jupyterlab/apputils": "^1.0.2"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~3.0.0"
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_gcloud_auth"
}
}
}
}
}