-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.02 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": "complexviewer",
"version": "2.2.4",
"description": "A network visualisation that displays molecular interaction data, including detailed residue-level information such as binding sites. Used in EBI's Complex Portal and elsewhere.",
"author": {
"name": "Colin Combe",
"email": "[email protected]"
},
"contributors": [
{
"name": "Colin Combe",
"email": "[email protected]"
},
{
"name": "Josh Heimbach",
"email": "[email protected]"
},
{
"name": "Yo Yehudi",
"email": "[email protected]"
},
{
"name": "Marine Dumousseau",
"email": ""
},
{
"name": "Eliot Ragueneau",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:MICommunity/ComplexViewer.git"
},
"bugs": {
"url": "https://github.com/MICommunity/ComplexViewer/issues"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"file-loader": "^6.2.0",
"style-loader": "^1.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^4.2.2"
},
"scripts": {
"clean": "rm dist/*",
"build-dev": "rm dist/*; webpack --mode development --config webpack.dev.js",
"build-prod": "rm dist/*; webpack --mode production --config webpack.prod.js"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"colorbrewer": "1.3.0",
"core-js": "^3.15.2",
"d3": "~7.1.1",
"d3-ease": "~3.0.1",
"d3-fetch": "~3.0.1",
"d3-interpolate": "^3.0.1",
"d3-polygon": "~3.0.1",
"d3-scale": "~4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"intersectionjs": "1.0.1",
"jquery": "^3.6.0",
"point2d": "0.0.1",
"rgb-color": "2.1.2"
},
"keywords": [
"biojs",
"protein",
"interactions",
"complexes"
],
"main": "src/js/app.js"
}