digital-vcd-parser/package.json
2021-09-06 20:40:00 -07:00

64 lines
1.6 KiB
JSON

{
"name": "vcd-stream",
"version": "0.14.1",
"description": "Value Change Dump (VCD) parser",
"main": "lib/index.js",
"scripts": {
"test_napi": "nyc -r=text -r=lcov mocha test/napi_*",
"test_wasm": "nyc -r=text -r=lcov mocha test/wasm_*",
"test": "eslint bin lib test && npm run test_napi && npm run test_wasm",
"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",
"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",
"fs-extra": "^10.0.0",
"llparse": "^7.1.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"dot-prop": "^6.0.1",
"eslint": "^7.31.0",
"http-server": "^13.0.1",
"llparse-dot": "^1.0.1",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"terser": "^5.7.2",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"parserOptions": {
"ecmaVersion": 2020
}
}
}