forked from jupyterlab/jupyterlab-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 4.31 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@jupyterlab/git",
"version": "0.23.2",
"description": "A JupyterLab extension for version control using git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"license": "BSD-3-Clause",
"author": "Jupyter Development Team",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "genversion --es6 --semi src/version.ts && tsc",
"build:labextension": "jlpm && jlpm clean:labextension && mkdirp jupyterlab_git/labextension && cd jupyterlab_git/labextension && npm pack ../..",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"clean:more": "jlpm clean && rimraf build dist MANIFEST",
"clean:labextension": "rimraf jupyterlab_git/labextension",
"clean:slate": "jlpm clean:more && jlpm clean:labextension && rimraf node_modules",
"contributors:generate": "jlpm run all-contributors generate",
"lint": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"eslint-check": "eslint . --ext .ts,.tsx",
"prepare": "jlpm run build",
"watch": "tsc -w"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/**/*.{json,}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip",
"conda"
],
"base": {
"name": "jupyterlab-git"
}
}
},
"extension": true,
"schemaDir": "schema"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/codemirror": "^2.0.0",
"@jupyterlab/console": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/nbformat": "^2.0.0",
"@jupyterlab/services": "^5.0.0",
"@jupyterlab/settingregistry": "^2.0.0",
"@jupyterlab/terminal": "^2.0.0",
"@jupyterlab/ui-components": "^2.0.0",
"@lumino/collections": "^1.2.3",
"@lumino/commands": "^1.11.0",
"@lumino/coreutils": "^1.5.0",
"@lumino/polling": "^1.0.4",
"@lumino/signaling": "^1.4.0",
"@lumino/widgets": "^1.11.1",
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.54",
"diff-match-patch": "^1.0.4",
"nbdime": "^6.0.0",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-textarea-autosize": "^7.1.2",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@jupyterlab/testutils": "^2.0.0",
"@types/codemirror": "^0.0.79",
"@types/diff-match-patch": "^1.0.32",
"@types/enzyme": "^3.1.15",
"@types/jest": "^25.0.0",
"@types/react": "~16.8.13",
"@types/react-dom": "~16.0.5",
"@types/react-textarea-autosize": "^4.3.5",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"all-contributors-cli": "^6.14.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"genversion": "^2.2.1",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.0.0",
"jest-fetch-mock": "^1.6.6",
"lint-staged": "^8.1.5",
"mkdirp": "^1.0.3",
"prettier": "^1.16.4",
"puppeteer": "^1.10.0",
"rimraf": "^2.6.1",
"ts-jest": "^25.0.0",
"typescript": "~3.7.1"
},
"peerDependencies": {
"codemirror": "^5.0.0"
},
"directories": {
"lib": "lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint . --ext .ts,.tsx --fix",
"git add"
]
},
"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",
"resolutions": {
"@types/react": "~16.8.4",
"**/extract-zip/mkdirp": "^0.5.3"
}
}