-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "duh-svd",
"version": "0.2.0",
"description": "DUH to SVD converter",
"author": "SiFive",
"license": "Apache-2.0",
"main": "lib/index.js",
"bin": {
"duh-svd": "bin/duh-svd.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "eslint lib bin test && nyc -r=text -r=lcov mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duh-svd.git"
},
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/sifive/duh-svd/issues"
},
"homepage": "https://github.com/sifive/duh-svd#readme",
"dependencies": {
"ajv": "^6.12.5",
"concat-stream": "^2.0.0",
"duh-schema": "^0.10.1",
"fs-extra": "^8.1.0",
"node-fetch": "^2.6.1",
"json5": "^2.1.1",
"onml": "^1.2.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.0.1",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}