forked from HelikarLab/ccNetViz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 2.86 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
{
"name": "ccnetviz",
"version": "1.0.18",
"main": "lib/ccNetViz.js",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
"husky": "^2.4.1",
"live-server": "^1.2.1",
"path": "^0.12.7",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"raw-loader": "^3.0.0",
"standard-version": "^6.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.1.0",
"slimerjs": "^1.0.0"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/HelikarLab/ccNetViz.git"
},
"keywords": [
"graph",
"graph-theory",
"visualization",
"network",
"node",
"edge",
"vertex",
"link",
"analysis",
"efficiency",
"performance",
"fast",
"speed",
"visualisation",
"visualization",
"draw",
"render",
"biojs",
"cytoscape",
"WebGL"
],
"dependencies": {
"@babel/register": "^7.4.4",
"babel-polyfill": "^6.26.0",
"jsdoc": "^3.6.2",
"ml-matrix": "^5.0.0",
"pbf": "^3.0.5",
"shelf-pack": "^2.0.1"
},
"contributors": [
{
"name": "HelikarLab",
"url": "http://helikarlab.org"
},
{
"name": "Ales Saska",
"email": "[email protected]",
"url": "http://alessaska.cz"
},
{
"name": "Renato Fabbri",
"email": "[email protected]"
}
],
"scripts": {
"lint": "eslint ./src",
"watch": "webpack --watch",
"start": "live-server",
"dev": "concurrently \"yarn watch\" \"yarn start\"",
"build": "webpack --mode production",
"test": "xvfb-run ./node_modules/.bin/slimerjs ./ci_test/slimer/index.js ; node ./ci_test/slimer/compare.js",
"test:server": "node ./ci_test/slimer/server.js",
"commit": "npx git-cz",
"release": "npx standard-version",
"postrelease": "git push --follow-tags origin master"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "perf",
"section": "Perfomance Changes"
},
{
"type": "test",
"hidden": true
},
{
"type": "chore",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "style",
"hidden": true
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}