digital-vcd-parser/package.json
2020-09-27 19:16:07 -07:00

53 lines
1.2 KiB
JSON

{
"name": "vcd-stream",
"version": "0.11.0",
"description": "Value Change Dump (VCD) parser",
"main": "lib/index.js",
"scripts": {
"testlint": "eslint bin lib && nyc -r=text -r=lcov mocha",
"test": "nyc -r=text -r=lcov mocha",
"testonly": "nyc -r=text -r=lcov mocha",
"watch": "mocha --watch",
"install": "node bin/build.js",
"prepare": "node bin/build.js"
},
"files": [
"*.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": {
"async": "^3.1.0",
"bindings": "^1.5.0",
"dot-prop": "^5.3.0",
"fs-extra": "^9.0.1",
"llparse": "^7.0.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"llparse-dot": "^1.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}