forked from jupyterlab/jupyterlab-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.64 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
{
"name": "@jupyterlab/git",
"version": "0.6.0",
"description": "A JupyterLab extension for version control using git",
"main": "lib/index.js",
"style": "style/index.css",
"license": "BSD-3-Clause",
"author": "Git Intern Team - Jenna Landy, Noah Stapp, Alena Mueller; AWS - Jaipreet Singh, Neelam Gehlot; Quansight - Saul Shanabrook",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublish": "npm run build",
"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}",
"style/*.css",
"style/images/*.svg"
],
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab-git"
}
}
}
},
"dependencies": {
"@jupyterlab/application": "^1.0.0",
"@jupyterlab/apputils": "^1.0.0",
"@jupyterlab/console": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/filebrowser": "^1.0.0",
"@jupyterlab/mainmenu": "^1.0.0",
"@jupyterlab/services": "^4.0.0",
"@jupyterlab/terminal": "^1.0.0",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@types/enzyme": "3.1.15",
"@types/jest": "^24",
"@types/react": "~16.8.13",
"@types/react-dom": "~16.0.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",
"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.3.1"
},
"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"
}
}