-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "@marioslab/asmcfg",
"version": "0.0.2",
"description": "A visualizer for assembly control flow graphs/basic blocks.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"screenshot.png"
],
"scripts": {
"prepublish": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "npm run build:esm && npm run build:iife && npm run build:iife:min",
"build:esm": "tsc --module es2015 --target es6 --outDir dist/",
"build:iife": "npx esbuild --bundle src/index.ts --sourcemap --outfile=dist/iife/asmcfg.js --format=iife --global-name=asmcfg",
"build:iife:min": "npx esbuild --minify dist/iife/asmcfg.js --sourcemap --outfile=dist/iife/asmcfg.min.js",
"dev": "concurrently \"npm run build:iife -- --watch\" \"npx live-server --no-browser\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/badlogic/asmcfg.git"
},
"keywords": [
"assembly",
"control flow graph",
"svg",
"graph layout"
],
"author": "Mario Zechner",
"license": "BSD",
"bugs": {
"url": "https://github.com/badlogic/asmcfg/issues"
},
"homepage": "https://github.com/badlogic/asmcfg",
"devDependencies": {
"@types/dagre-d3": "^0.6.3",
"@types/graphlib": "^2.1.8",
"@types/graphlib-dot": "^0.6.1",
"concurrently": "^7.6.0",
"esbuild": "^0.16.8",
"live-server": "^1.2.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"d3": "^7.7.0",
"dagre-d3": "^0.6.4",
"graphlib-dot": "^0.6.4",
"panzoom": "^9.4.3"
}
}