-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 974 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
37
38
39
40
41
42
43
44
{
"name": "duh-mem",
"version": "0.1.0",
"description": "DUH memory package",
"main": "index.js",
"bin": {
"duh-mem": "bin/duh-mem.js"
},
"scripts": {
"test": "eslint lib && nyc -r=text -r=lcov mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duh-mem.git"
},
"keywords": [],
"author": "SiFive",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sifive/duh-mem/issues"
},
"homepage": "https://github.com/sifive/duh-mem#readme",
"files": [
"lib"
],
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"json5": "^2.1.3",
"mocha": "^8.3.2",
"nyc": "^15.1.0"
},
"dependencies": {
"duh-core": "^0.13.0",
"duh-verilog": "^0.3.1",
"immutability-helper": "^3.1.1",
"yargs": "^16.2.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}