51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "vcd-parser",
|
|
"version": "1.0.1",
|
|
"description": "Node.js VCD Parsing Tool",
|
|
"main": "lib/vcd-parser.js",
|
|
"scripts": {
|
|
"test": "npm run lint && ./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/ahmed-agiza/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.4",
|
|
"mocha": "^8",
|
|
"prettier": "^1.16.4"
|
|
},
|
|
"dependencies": {
|
|
"async": "^3"
|
|
}
|
|
} |