-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
133 lines (133 loc) · 4.18 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ipysigma",
"version": "0.24.5",
"description": "A Jupyter widget using sigma.js to render interactive networks.",
"keywords": [
"sigma",
"graph",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/medialab/ipysigma",
"bugs": {
"url": "https://github.com/medialab/ipysigma/issues"
},
"license": "MIT",
"author": {
"name": "Yomguithereal",
"email": "guillaume.plique@sciencespo.fr"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/medialab/ipysigma"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension:dev",
"build:prod": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:nbextension": "webpack",
"build:gh-pages": "./scripts/build-gh-pages.sh",
"build:pdf": "cd presentations && bs pdf",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf ipysigma/labextension",
"clean:nbextension": "rimraf ipysigma/nbextension/static/index.js",
"decks": "cd presentations && bs serve",
"deploy": "npm run build:gh-pages && gh-pages -d ./presentations/gh-pages",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepack": "yarn run build:lib",
"test": "jest",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6",
"@yomguithereal/sigma-experiments-renderers": "0.2.2",
"choices.js": "^10.1.0",
"chroma-js": "^2.4.2",
"comma-number": "^2.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"debounce": "^1.2.1",
"file-saver": "^2.0.5",
"graphology": "^0.25.1",
"graphology-communities-louvain": "^2.0.0",
"graphology-gexf": "^0.10.1",
"graphology-layout": "^0.6.0",
"graphology-layout-forceatlas2": "0.10.1",
"graphology-layout-noverlap": "^0.4.2",
"graphology-svg": "^0.1.3",
"iwanthue": "^2.0.0",
"mnemonist": "^0.39.1",
"pandemonium": "^2.4.1",
"screenfull": "^6.0.1",
"seedrandom": "^3.0.5",
"sigma": "3.0.0-alpha2"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@jupyter-widgets/base-manager": "^1.0.7",
"@jupyterlab/builder": "^4.0.11",
"@lumino/application": "^2.3.0",
"@lumino/widgets": "^2.3.1",
"@types/chroma-js": "^2.1.3",
"@types/comma-number": "^2.1.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/debounce": "^1.2.1",
"@types/file-saver": "^2.0.5",
"@types/jest": "^26.0.0",
"@types/seedrandom": "^3.0.2",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"acorn": "^8.11.3",
"backslide": "^3.1.0",
"css-loader": "^6.9.1",
"csstype": "^3.0.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"gh-pages": "^4.0.0",
"graphology-types": "0.24.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "~5.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "ipysigma/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}