-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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",
"escodegen": "^2.0.0",
"esprima": "^4.0.0",
"estraverse": "^5.3.0",
"irtl": "^0.2.0",
"onml": "^2.1.0"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.1",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"fs-extra": "^11.2.0",
"lodash.range": "^3.2.0",
"mocha": "^8.4.0",
"nyc": "^17.1.0",
"yargs": "^17.7.2"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
}
}