-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.18 KB
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
{
"name": "knowledgelab",
"version": "0.0.2",
"description": "A JupyterLab extension for knowledge-repo integration",
"author": "Tim Paine, Ramindu Deshapriya",
"main": "lib/index.js",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "tsc",
"build:lab": "rimraf lab-dist && mkdirp lab-dist && cd lab-dist && npm pack ..",
"build:all": "npm run build && npm run build:lab",
"clean": "rimraf lib",
"lint": "./node_modules/.bin/tslint './src/*.ts'",
"prepublishOnly": "npm run build",
"test": "jest --coverage --collectCoverageFrom=src/*.{ts}"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.css"
],
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"base": {
"name": "knowledgelab"
},
"managers": [
"pip"
]
}
}
},
"dependencies": {
"@jupyterlab/application": "^2.0.2",
"@jupyterlab/apputils": "^2.0.2",
"@jupyterlab/coreutils": "^4.0.2",
"@jupyterlab/docmanager": "^2.0.2",
"@jupyterlab/docregistry": "^2.0.2",
"@jupyterlab/mainmenu": "^2.0.2",
"@jupyterlab/notebook": "^2.0.2",
"@phosphor/disposable": "^1.3.1",
"@types/codemirror": "^0.0.87"
},
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"@types/jest": "^25.1.4",
"babel-jest": "^25.1.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.1.0",
"jest-transform-css": "^2.0.0",
"mkdirp": "^1.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"resolutions": {
"acorn": "^6.4.1",
"braces": "^2.3.1",
"browserslist": "^4.16.5",
"codemirror": "^5.58.2",
"color-string": "^1.5.5",
"glob-parent": "^5.1.2",
"is-svg": "^4.2.2",
"js-yaml": "^3.13.1",
"kind-of": "^6.0.3",
"minimist": "^0.2.1",
"node-fetch": "^2.6.1",
"node-notifier": "^8.0.1",
"normalize-url": "^4.5.1",
"papaparse": "^5.2.0",
"postcss": "^7.0.36",
"sanitize-html": "^2.3.2",
"serialize-javascript": "^3.1.0",
"url-parse": "^1.5.0",
"yargs-parser": "^13.1.2"
}
}