This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vcd-stream",
"version": "1.5.0",
"description": "Value Change Dump (VCD) parser",
"main": "lib/index.js",
"scripts": {
"mocha_napi": "mocha test/napi_*",
"mocha_wasm": "mocha test/wasm_*",
"nyc_mocha_napi": "nyc -r=text -r=lcov mocha test/napi_* ",
"nyc_mocha_wasm": "nyc -r=text -r=lcov mocha test/wasm_*",
"nyc_mocha": "nyc -r=text -r=lcov mocha",
"test": "eslint bin lib test && npm run nyc_mocha",
"testonly": "nyc -r=text -r=lcov mocha",
"watch": "mocha --watch",
"build.web": "browserify ./lib/vcd-web.js | terser --compress -o demo/vcd-web.min.js",
"watch.web": "watchify ./lib/vcd-web.js -o demo/vcd-web.min.js -v",
"watch.test2": "watchify ./lib/test2.js -o ./v2/main.js -v",
"watch.vcd-worker": "watchify ./lib/vcd-worker.js -o ./v2/vcd-worker.js -v",
"install": "node bin/build.js",
"prepare": "node bin/build.js"
},
"files": [
"out/vcd.js",
"out/vcd.wasm",
"*.c",
"*.h",
"lib",
"bin/build.js",
"binding.gyp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/vcd.git"
},
"keywords": [
"VCD"
],
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavedrom/vcd/issues"
},
"homepage": "https://github.com/wavedrom/vcd#readme",
"dependencies": {
"bindings": "^1.5.0",
"dot-prop": "^9.0.0",
"llparse": "^7.1.1"
},
"devDependencies": {
"@drom/eslint-config": "0.12.0",
"browserify": "^17.0.1",
"chai": "5.1.2",
"chokidar": "4.0.3",
"commander": "^13.0.0",
"eslint": "^8.57.1",
"fs-extra": "^11.2.0",
"http-server": "^14.1.0",
"llparse-dot": "^1.0.1",
"mocha": "^11.0.1",
"node-gyp": "^11.0.0",
"nyc": "^17.1.0",
"terser": "^5.27.0",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
}
}