-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.6 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
{
"author": {
"name": "MetabolicAtlas.org"
},
"bugs": {
"url": "https://github.com/MetabolicAtlas/3d-network-viewer/issues"
},
"name": "@metabolicatlas/3d-network-viewer",
"version": "0.1.34",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bundleDependencies": [],
"deprecated": false,
"description": "ThreeJS based graph viewer.",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.24.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-prettier": "^4.2.1",
"html-to-image": "^1.10.8",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"serve": "^14.0.1",
"terser": "^5.15.0",
"three": "^0.144.0"
},
"homepage": "http://metabolicatlas.org/",
"keywords": [
"metabolic atlas"
],
"license": "GPL-3.0-only",
"main": "build/met-atlas-viewer.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MetabolicAtlas/3d-network-viewer.git"
},
"scripts": {
"remove": "rimraf public/met-atlas-viewer.js",
"build": "rimraf public/met-atlas-viewer.js && rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"prepare": "npm run build && npm run minify",
"minify": "terser public/met-atlas-viewer.js -o build/met-atlas-viewer.min.js -c -m --comments '/Version/'",
"start": "serve public",
"lint": "eslint src public/index.html --ext .js,.html",
"check-format": "prettier --check src public/index.html",
"format": "prettier --write src public/index.html"
},
"type": "module"
}