-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"name": "constellation-ledger-refjs",
"description": "constellation javascript library",
"version": "1.0.3",
"module": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/StardustCollective/constellation-ledger-refjs"
},
"scripts": {
"eslint": "eslint --fix 'scripts/**/*.js'",
"eslint-unit-test": "eslint --fix 'test/unit/**/*.js'",
"itest": "./node_modules/mocha/bin/mocha -t 100000 test/integration",
"test": "./node_modules/mocha/bin/mocha -t 100000 test/unit",
"coverage": "nyc -x 'test/util/**' -x 'test/unit/**' ./node_modules/mocha/bin/mocha -t 100000 test/unit",
"start": "node main.js",
"docs": "./node_modules/documentation/bin/documentation.js build --config documentation.yaml documentation.js -f md -o docs/documentation.md"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.1.0",
"babel-polyfill": "^6.26.0",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bs58": "^4.0.1"
},
"devDependencies": {
"chai": "^4.3.4",
"documentation": "^5.3.3",
"eslint": "^7.30.0",
"eslint-config-google": "^0.14.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0"
}
}