forked from zgqallen/jupyterlab-logout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 917 Bytes
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
{
"name": "@jupyterlab/logout",
"version": "1.0.1",
"description": "Show Logout Button in Jupyterlab Main Menu",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"logout"
],
"license": "BSD-3-Clause",
"author": "gary.zhong@sap.com",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.19.0",
"@phosphor/widgets": "^1.5.0",
"@jupyterlab/mainmenu": "^0.6.0-0",
"@jupyterlab/coreutils": "^2.2.1"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~3.1.6"
},
"jupyterlab": {
"extension": true
}
}