-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 928 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 928 Bytes
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
{
"name": "graphjs",
"version": "0.0.4",
"description": "GraphJS",
"author": {
"name": "Marc Mouries"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/graphjs.min.js",
"jsdelivr": "dist/umd/graphjs.min.js",
"unpkg": "dist/umd/graphjs.min.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"del-cli": "^4.0.1",
"eslint": "^8.4.1",
"rollup": "^2.60.1",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"dist"
],
"keywords": [
"graph",
"visualization",
"canvas"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/MarcMouries/GraphJS.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -fr dist"
}
}