forked from ahmed-agiza/vcd-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "cloudv-vcd-parser",
"version": "1.1.0",
"description": "Node.js VCD Parsing Tool",
"main": "lib/vcd-parser.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec --exit",
"lint": "./node_modules/.bin/eslint .",
"pretty": "./node_modules/.bin/prettier --write --config .prettierrc.js {test,__{tests,mocks}__}/**/*.js {lib,__{tests,mocks}__}/**/*.js",
"prettier": "npm run pretty",
"doc": "npm run lint && rm -rf docs/* && ./node_modules/.bin/jsdoc lib -c ./.jsdoc.json --package ./package.json --readme ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cloud-V/vcd-parser.git"
},
"engines": {
"node": ">= 7.6"
},
"keywords": [
"vcd",
"value-change-dump",
"parser",
"hardware",
"verilog",
"iverilog",
"simulation"
],
"author": "Ahmed A. Agiza <ahm.agiza@gmail.com> (http://ahmedagiza.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmed-agiza/vcd-parser/issues"
},
"homepage": "https://github.com/ahmed-agiza/vcd-parser#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "^3.6.7",
"mocha": "^8",
"prettier": "^1.16.4"
},
"dependencies": {
"async": "^3",
"next-tick": "^1.1.0"
}
}