-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "cmgm",
"version": "1.0.0",
"description": "CMGM is a unified complexity management framework for compound graphs ",
"main": "dist/cmgm.cjs.js",
"module": "dist/cmgm.esm.js",
"browser": "dist/cmgm.umd.js",
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"build-dev": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iVis-at-Bilkent/cmgm.git"
},
"keywords": [
"compound",
"graph",
"complexity",
"visualzation",
"layout"
],
"author": "iVis-at-Bilkent",
"license": "MIT",
"bugs": {
"url": "https://github.com/iVis-at-Bilkent/cmgm/issues"
},
"homepage": "https://github.com/iVis-at-Bilkent/cmgm#readme",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"rollup": "^2.56.3",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}