-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.85 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
{
"name": "cytoscape-clj",
"version": "0.5.0",
"description": "A Cytoscape Widget for Common Lisp Jupyter",
"keywords": [
"cytoscape",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"{dist,lib}/**/*.{js,ts,map}",
"css/*.css",
"LICENSE.md"
],
"homepage": "https://github.com/yitzchak/cytoscape-clj",
"bugs": {
"url": "https://github.com/yitzchak/cytoscape-clj/issues"
},
"license": "MIT",
"author": {
"name": "Tarn W. Burton",
"email": "twburton@gmail.com"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/yitzchak/cytoscape-clj"
},
"scripts": {
"build": "tsc && jupyter-labextension build",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"prepack": "yarn run build"
},
"dependencies": {
"@jupyter-widgets/base": "^6.0.4",
"@types/cytoscape": "^3.19.9",
"cytoscape": "^3.25.0",
"cytoscape-cola": "^2.5.1",
"cytoscape-cxtmenu": "^3.5.0",
"cytoscape-dagre": "^2.5.0",
"cytoscape-fcose": "^2.2.0",
"cytoscape-klay": "^3.1.4"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"lint-staged": "^13.0.3",
"typescript": "^5.1.3"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "prebuilt"
},
"lint-staged": {
"*.ts": [
"eslint . --ext .ts --fix"
]
},
"prettier": {
"singleQuote": true
}
}