-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "duh",
"version": "1.21.0",
"description": "Design Unit Hardware",
"main": "lib/index.js",
"scripts": {
"test": "eslint lib test bin && nyc -r=text -r=lcov mocha"
},
"files": [
"lib"
],
"bin": {
"duh": "bin/duh.js",
"duh-import-verilog-ports": "bin/duh-import-verilog-ports.js",
"duh-import-verilog-ports-simple": "bin/duh-import-verilog-ports-simple.js",
"duh-infer-channels": "bin/infer-channels.js",
"duh-export-verilog-bbx": "bin/export-verilog-bbx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duh.git"
},
"author": "SiFive",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sifive/duh/issues"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/sifive/duh#readme",
"dependencies": {
"ajv": "^8.17.1",
"concat-stream": "^2.0.0",
"duh-bus": "0.12.1",
"duh-core": "0.16.0",
"duh-scala": "0.16.0",
"fs-extra": "11.2.0",
"inquirer": "^8.2.6",
"json-refs": "^3.0.12",
"json5": "^2.1.3",
"lodash.get": "^4.4.2",
"onml": "^2.1.0",
"winston": "^3.16.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"chai": "^4.5.0",
"coveralls": "^3.1.1",
"eslint": "8.57.1",
"mocha": "10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "17.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}