forked from jupyrdf/ipyelk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "ipyelk",
"version": "0.1.1",
"description": "ElkJS widget for Jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.edu/dfreeman06/ipyelk",
"bugs": {
"url": "https://github.edu/dfreeman06/ipyelk/issues"
},
"license": "BSD-3-Clause",
"author": "Dane Freeman",
"files": [
"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}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.edu/dfreeman06/ipyelk.git"
},
"scripts": {
"bootstrap": "jlpm --ignore-optional --ignore-scripts && jlpm clean && jlpm schema && jlpm lint && jlpm build",
"build": "tsc -b",
"clean": "rimraf lib ./ipyelk/schema/elkschema.json",
"watch": "jlpm build -w",
"schema": "ts-json-schema-generator --path ./src/elkschema.ts -o ./ipyelk/schema/elkschema.json",
"lint": "jlpm prettier",
"prettier": "prettier --write \"*.{json,yml,md}\" \"{src,style,elk}/**/*.{ts,tsx,js,jsx,css,json,md,yml}\""
},
"dependencies": {
"@jupyterlab/application": "^1.2.7",
"reflect-metadata": "^0.1.13",
"sprotty-elk": "0.8.0",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"@jupyter-widgets/base": "^2.0.1",
"@jupyter-widgets/controls": "^1.5.1",
"@jupyter-widgets/jupyterlab-manager": "^1.0.1",
"@types/d3": "^5.0.0",
"@types/lodash": "^4.14.152",
"prettier": "^1.9.1",
"react": "*",
"rimraf": "^2.6.1",
"snabbdom": "~0.6.6",
"ts-json-schema-generator": "^0.56.0",
"typescript": "~3.7.2"
},
"peerDependencies": {
"@jupyter-widgets/base": "^2.0.1",
"@jupyter-widgets/controls": "^1.5.1",
"@jupyter-widgets/jupyterlab-manager": "^1.0.1",
"react": "*"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": "lib/plugin"
}
}