forked from jupyterlab/jupyterlab-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.22 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
{
"name": "@jupyterlab/github",
"version": "2.0.0",
"description": "JupyterLab viewer for GitHub repositories",
"keywords": [
"github",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-github",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-github/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-github.git"
},
"license": "BSD-3-Clause",
"author": "Ian Rose",
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc",
"build:test": "cd test && ./build-tests.sh",
"clean": "rimraf lib",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"test": "cd test && ./run-tests.sh",
"watch": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/docmanager": "^2.0.0",
"@jupyterlab/docregistry": "^2.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/services": "^5.0.0",
"@jupyterlab/settingregistry": "^2.0.0",
"@jupyterlab/ui-components": "^2.0.0",
"@lumino/algorithm": "^1.2.3",
"@lumino/messaging": "^1.3.3",
"@lumino/signaling": "^1.3.5",
"@lumino/widgets": "^1.11.1",
"base64-js": "^1.3.0"
},
"devDependencies": {
"@types/base64-js": "^1.2.5",
"@types/text-encoding": "^0.0.35",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.3"
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_github"
}
}
},
"schemaDir": "schema"
}
}