forked from jupyterlab/jupyterlab-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.6 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
{
"name": "@jupyterlab/git",
"version": "0.10.0",
"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": "jlpm install && tsc",
"build:labextension": "jlpm build && 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",
"watch": "tsc -w",
"test": "jest",
"lint": "tslint --project .",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"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": "^1.1.0",
"@jupyterlab/apputils": "^1.1.0",
"@jupyterlab/codemirror": "^1.1.0",
"@jupyterlab/console": "^1.1.0",
"@jupyterlab/coreutils": "^3.1.0",
"@jupyterlab/filebrowser": "^1.1.0",
"@jupyterlab/mainmenu": "^1.1.0",
"@jupyterlab/services": "^4.1.0",
"@jupyterlab/terminal": "^1.1.0",
"@jupyterlab/ui-components": "^1.1.0",
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"@phosphor/widgets": "^1.8.0",
"diff-match-patch": "^1.0.4",
"nbdime": "~5.0.1",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"react-textarea-autosize": "^7.1.2",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@jupyterlab/testutils": "^1.1.0",
"@types/codemirror": "^0.0.79",
"@types/diff-match-patch": "^1.0.32",
"@types/enzyme": "3.1.15",
"@types/jest": "^24",
"@types/react": "~16.8.13",
"@types/react-dom": "~16.0.5",
"@types/react-textarea-autosize": "^4.3.5",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"husky": "1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24",
"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": "^24",
"tslint": "^5.11.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "~3.5.1",
"typescript-tslint-plugin": "^0.5.4"
},
"peerDependencies": {
"codemirror": "^5.0.0"
},
"directories": {
"lib": "lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"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"
}
}