forked from jupyrdf/ipyelk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 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
{
"name": "@jupyrdf/jupyter-elk",
"version": "1.0.1",
"description": "ElkJS widget for Jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.com/jupyrdf/ipyelk",
"bugs": {
"url": "https://github.com/jupyrdf/ipyelk/issues"
},
"license": "BSD-3-Clause",
"author": "Dane Freeman",
"files": [
"{lib,style,src}/**/*.{.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,css}",
"LICENSE.txt",
"COPYRIGHT.md",
"third-party/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyrdf/ipyelk"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"printWidth": 88
},
"scripts": {
"bootstrap": "jlpm --prefer-offline --ignore-optional --ignore-scripts && jlpm clean && jlpm schema && jlpm lint && jlpm build",
"build": "jlpm build:ts && jlpm build:ext",
"build:ts": "tsc -b",
"build:ext": "jupyter labextension build .",
"clean": "rimraf ./lib ./py_src/ipyelk/schema/elkschema.json ./py_src/ipyelk/labextension",
"watch": "jlpm build:ts --watch --preserveWatchOutput",
"schema": "ts-json-schema-generator --tsconfig ./tsconfig.json --type AnyElkNode --no-type-check --expose all --path ./src/elkschema.ts -o ./py_src/ipyelk/schema/elkschema.json",
"lint": "jlpm lint:prettier",
"lint:prettier": "prettier --write --list-different \"*.{json,yml,md}\" \"{src,style,py_src,.github,examples,docs}/**/*.{ts,tsx,js,jsx,css,json,md,yml}\""
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"sprotty-elk": "0.9.0"
},
"devDependencies": {
"@jupyter-widgets/base": "4",
"@jupyter-widgets/controls": "3",
"@jupyter-widgets/jupyterlab-manager": "3",
"@jupyterlab/application": "3",
"@jupyterlab/builder": "^3.0.1",
"@jupyterlab/theme-dark-extension": "3",
"@jupyterlab/theme-light-extension": "3",
"@types/lodash": "^4.14.162",
"prettier": "^1.9.1",
"rimraf": "^3.0.2",
"snabbdom": "~0.6.6",
"ts-json-schema-generator": "^0.83.2",
"typescript": "~4.1.3"
},
"peerDependencies": {
"@jupyter-widgets/base": "4",
"@jupyter-widgets/controls": "3",
"@jupyter-widgets/jupyterlab-manager": "3"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "py_src/ipyelk/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}