-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 852 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
{
"name": "subaddress",
"version": "1.0.3",
"description": "Monero subaddress utilities",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --detectOpenHandles"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"notify": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/knaccc/subaddress-js.git"
},
"keywords": [
"Monero",
"subaddress"
],
"author": "knaccc",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/knaccc/subaddress-js/issues"
},
"homepage": "https://github.com/knaccc/subaddress-js#readme",
"dependencies": {
"bn.js": ">=4.11.8",
"elliptic": ">=6.4.1",
"keccak": ">=2.0.0",
"safe-buffer": ">=5.1.2"
},
"devDependencies": {
"jest": "^24.0.0"
}
}