-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "graphvizsvg",
"version": "1.2.0",
"description": "A modern ESM module for interactive SVG visualization of Graphviz graphs.",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "jest --config jest.config.js --coverage",
"build": "esbuild src/index.js --minify --format=esm --bundle --outdir=dist",
"dev": "npm run build -- --sourcemap=inline --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"graphviz",
"svg",
"interactive",
"visualization",
"graph",
"esm",
"module"
],
"author": "Bas Nijholt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pipefunc/graphvizsvg.git"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"esbuild": "^0.19.11"
},
"dependencies": {
"jquery": "3.7.1",
"bootstrap": "4.6.2"
},
"type": "module"
}