-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "duh-bus",
"version": "0.12.1",
"description": "Bus definition DUH documents",
"main": "index.js",
"bin": {
"duh-bus": "bin/duh-bus.js"
},
"scripts": {
"test": "eslint bin && nyc -r=text -r=lcov mocha",
"prepublish": "node bin/indexer.js"
},
"files": [
"index.js",
"lib/",
"specs/"
],
"unpkg": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duh-bus.git"
},
"author": "SiFive",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sifive/duh-bus/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/sifive/duh-bus#readme",
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"chai": "^4.3.6",
"duh-schema": "^0.11.0",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0"
},
"dependencies": {
"commander": "^12.1.0",
"json5": "^2.2.3"
}
}