forked from wavedrom/vcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "vcd-stream",
"version": "0.6.0",
"description": "Value Change Dump (VCD) parser",
"main": "lib/index.js",
"scripts": {
"test": "eslint bin lib && nyc -r=text -r=lcov mocha",
"install": "node bin/build.js",
"prepare": "node bin/build.js"
},
"files": [
"*.c",
"*.h",
"lib",
"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": {
"async": "^3.1.0",
"bindings": "^1.5.0",
"fs-extra": "^8.1.0",
"llparse": "^6.2.0"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"llparse-dot": "^1.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}