-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1005 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
{
"name": "hs-rosetta",
"version": "1.2.0",
"description": "Handshake Coinbase Rosetta bike-shed",
"main": "./lib/plugin.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint lib/ test/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js",
"docs": "jsdoc -c jsdoc.json",
"cover": "istanbul cover node_modules/.bin/_bmocha -- --reporter spec test/*-test.js",
"clean": "rm -rf coverage && rm -rf docs"
},
"keywords": [
"hsd",
"handshake",
"plugin",
"coinbase",
"rosetta"
],
"author": "The Handshake Developers",
"license": "MIT",
"dependencies": {
"bcrypto": "^5.1.0",
"blgr": "^0.1.7",
"bval": "^0.1.6",
"bweb": "^0.1.10",
"hsd": "github:handshake-org/hsd"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"bcurl": "^0.1.6",
"bmocha": "^2.1.3",
"eslint": "^7.1.0",
"hs-client": "0.0.8",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.6.4"
}
}