This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
{
"name": "nbgather",
"version": "0.6.1",
"keywords": [
"jupyter",
"jupyterlab"
],
"author": {
"name": "Andrew Head",
"email": "[email protected]",
"url": "http://andrewhead.info"
},
"license": "MIT",
"repository": "https://github.com/Microsoft/gather",
"homepage": "https://microsoft.github.io/gather/",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepack": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"format:all": "prettier --single-quote --trailing-comma=es5 --write \"{src,style}/**/*.{css,js,ts}\"",
"clean": "rm -rf lib/"
},
"main": "lib/main/main.js",
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
},
"files": [
"schema/*.json",
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"dependencies": {
"@jupyterlab/application": "^1.2.0",
"@jupyterlab/apputils": "^1.2.0",
"@jupyterlab/cells": "^1.2.1",
"@jupyterlab/codeeditor": "^1.2.0",
"@jupyterlab/codemirror": "^1.2.0",
"@jupyterlab/coreutils": "^3.2.0",
"@jupyterlab/docmanager": "^1.2.0",
"@jupyterlab/docregistry": "^1.2.0",
"@jupyterlab/fileeditor": "^1.2.0",
"@jupyterlab/notebook": "^1.2.1",
"@jupyterlab/outputarea": "^1.2.1",
"@jupyterlab/rendermime": "^1.2.0",
"@andrewhead/python-program-analysis": "^0.4.8",
"@phosphor/widgets": "^1.9.3",
"@types/codemirror": "^0.0.76",
"diff-match-patch": "^1.0.1",
"jquery": "^3.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^24.0.21",
"@types/jquery": "^3.3.4",
"@types/node": "^8.10.58",
"babel-jest": "^24.9.0",
"babel-plugin-inline-react-svg": "^1.1.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"jison": "^0.4.18",
"prettier": "1.17.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.21.0",
"ts-jest": "^24.1.0",
"ts-loader": "^5.3.3",
"typescript": "3.3.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}