-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 869 Bytes
/
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
{
"name": "yosys2digitaljs",
"version": "0.8.0",
"description": "Export Yosys netlists to a logic simulator",
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"cjs": "tsc -m commonjs",
"build": "npm run cjs",
"test": "./run_tests.sh"
},
"author": "Marek Materzok",
"license": "BSD-2-Clause",
"dependencies": {
"3vl": "^1.0.1",
"big-integer": "^1.6.49",
"hashmap": "^2.4.0",
"minimist": "^1.2.5",
"sanitize-filename": "^1.6.3",
"tmp-promise": "^1.1.0",
"topsort": "^0.0.2"
},
"engines": {
"node": ">=8.11.1"
},
"homepage": "https://github.com/tilk/yosys2digitaljs",
"repository": {
"type": "git",
"url": "https://github.com/tilk/yosys2digitaljs.git"
},
"devDependencies": {
"@types/node": "^16.10.3",
"typescript": "^4.4.3"
}
}