digital-vcd-parser/package.json
Aliaksei Chapyzhenka 5abcb9df7b ⬆️ dependencies
2021-04-20 14:08:30 -07:00

59 lines
1.4 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",
"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": {
"async": "^3.1.0",
"bindings": "^1.5.0",
"dot-prop": "^6.0.1",
"fs-extra": "^9.1.0",
"llparse": "^7.0.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"chai": "^4.3.4",
"eslint": "^7.24.0",
"llparse-dot": "^1.0.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"parserOptions": {
"ecmaVersion": 2020
}
}
}