reqack
Version:
elastic logic circuit tools
68 lines (67 loc) • 1.71 kB
JSON
{
"name": "reqack",
"version": "1.12.3",
"description": "elastic logic circuit tools",
"main": "lib/",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"test": "eslint lib/*.js test/*.js && npm run clean && mocha test",
"retest": "eslint lib/*.js && nyc mocha test",
"redot": "for i in build/*; do for j in \"$i\"/*.dot; do dot -Tsvg \"$j\" > \"$j\".svg; done; done",
"clean": "rm -rf build",
"vlint": "for i in build/*; do for j in \"$i\"/*.v; do verilator -Irtl --lint-only \"$j\"; done; done",
"browserify": "browserify --standalone reqack lib/index.js > build/reqack.js",
"prepublish": "npm run test && mkdir -p build && npm run browserify"
},
"files": [
"build/reqack.js",
"lib",
"rtl"
],
"unpkg": "build/reqack.js",
"repository": {
"type": "git",
"url": "git+https://github.com/drom/reqack.git"
},
"keywords": [
"elastic",
"verilog",
"pipeline",
"RTL",
"HDL",
"HLS"
],
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/drom/reqack/issues"
},
"homepage": "https://github.com/drom/reqack#readme",
"dependencies": {
"dagre": "^0.8.2",
"onml": "^1.2.0",
"escodegen": "^1.9.0",
"esprima": "^4.0.0",
"estraverse": "^5.1.0"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"lodash.range": "^3.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"yargs": "^15.3.1"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node4",
"rules": {
"no-console": 1
}
}
}