digital-vcd-parser/package.json
Aliaksei Chapyzhenka af82be42f5 1.2.0
2022-05-25 22:16:28 -07:00

71 lines
1.8 KiB
JSON

{
"name": "vcd-stream",
"version": "1.2.0",
"description": "Value Change Dump (VCD) parser",
"main": "lib/index.js",
"scripts": {
"mocha_napi": "mocha test/napi_*",
"mocha_wasm": "mocha test/wasm_*",
"nyc_mocha_napi": "nyc -r=text -r=lcov mocha test/napi_* ",
"nyc_mocha_wasm": "nyc -r=text -r=lcov mocha test/wasm_*",
"nyc_mocha": "nyc -r=text -r=lcov mocha",
"test": "eslint bin lib test && npm run nyc_mocha",
"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",
"dot-prop": "^6.0.1",
"llparse": "^7.1.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17.0.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"fs-extra": "^10.1.0",
"http-server": "^14.1.0",
"llparse-dot": "^1.0.1",
"mocha": "^9.2.1",
"node-gyp": "^9.0.0",
"nyc": "^15.1.0",
"terser": "^5.11.0",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"env": {
"es2020": true
},
"parserOptions": {
"ecmaVersion": 2020
}
}
}