-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"name": "depgraph",
"version": "1.0.0",
"description": "[Videos](https://youtu.be/slwxspOzzK0)",
"type": "module",
"main": "src/main.js",
"scripts": {
"test": "node --test --test-reporter=spec --test-concurrency=1 test/*.test.mjs",
"test:visual": "npx playwright test",
"test:visual:show": "npx playwright test --headed",
"static": "node depgraph-server.mjs",
"stream": "node depgraph-server.mjs --watch src/",
"image": "node depgraph-server.mjs --history runtime/image.csv",
"exec": "node depgraph-server.mjs --history runtime/exec.csv",
"serve": "node depgraph-server.mjs --port 3000",
"generate": "node codegen/graphgen.mjs --out runtime/history.csv",
"scan": "node codegen/repo-scanner.mjs . --out runtime/history.csv",
"watch": "node codegen/watcher.mjs --root . --out runtime/history.csv"
},
"keywords": [
"hypergraph"
],
"author": "",
"license": "ISC",
"dependencies": {
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"mdast-util-from-markdown": "^2.0.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"playwright": "^1.59.1"
}
}