-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 774 Bytes
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
{
"name": "btc-utils",
"version": "1.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "npm-run-all --silent test-*",
"test-audit": "npm audit --audit-level=moderate",
"test-lint": "eslint ./src/**/*.js"
},
"author": "ARJUN SASIKUMAR",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"axios": "^0.21.1",
"bitcoinjs-lib": "^5.1.10",
"bs58": "^4.0.1",
"elliptic": "^6.5.3",
"js-sha256": "^0.9.0",
"ripemd160": "^2.0.2",
"secure-random": "^1.1.2"
}
}