-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1011 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
{
"name": "duhportinf",
"version": "0.4.0",
"description": "library to match flat named port list to library of bus specifications",
"scripts": {
"preinstall": ".npm-install/check-py.sh",
"gen-reqs": ".npm-install/gen-local-req.py requirements.txt local-pylib-requirements.txt",
"install-pyreqs": "pip3 install --target $PWD/pylib -r local-pylib-requirements.txt",
"install": "npm run -s gen-reqs && npm run -s install-pyreqs && pip3 install --target $PWD/pylib ."
},
"bin": {
"duh-portinf": ".npm-install/duhportinf-bin.py",
"duh-portbundler": ".npm-install/duhportbundler-bin.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duhportinf.git"
},
"keywords": [
"duh",
"inference"
],
"author": "alex bishara",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sifive/duhportinf/issues"
},
"homepage": "https://github.com/sifive/duhportinf#readme",
"dependencies": {
"duh-bus": "^0.5.0"
}
}