forked from jupyterlab/jupyterlab-git
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.94 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
{
"name": "@jupyterlab/git",
"version": "0.4.2",
"description": "A JupyterLab extension for version control using git",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"author": "Git Intern Team, Jenna Landy, Noah Stapp, and Alena Mueller",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublish": "npm run build",
"watch": "tsc -w",
"test": "jest"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/*.css",
"style/images/*.svg"
],
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab-git"
}
}
}
},
"dependencies": {
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/console": "^0.19.1",
"@jupyterlab/coreutils": "^2.0.2",
"@jupyterlab/filebrowser": "^0.19.1",
"@jupyterlab/mainmenu": "^0.8.1",
"@jupyterlab/services": "^3.1.0",
"@jupyterlab/terminal": "^0.19.1",
"@jupyterlab/theming": "^0.9.0",
"@phosphor/widgets": "^1.6.0",
"identity-obj-proxy": "^3.0.0",
"nbdime": "^4.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-toggle-display": "^2.2.0",
"tslint": "^5.11.0",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"prettier": "^1.14.3",
"rimraf": "^2.6.1",
"ts-jest": "^23.10.4",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "~3.1.2"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-git.git"
},
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-git/issues"
},
"homepage": "https://github.com/jupyterlab/jupyterlab-git"
}