-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 902 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 902 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
32
33
34
35
36
{
"name": "privatetx-lib",
"version": "1.0.2",
"description": "A chain Analysis library",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p ./tsconfig.json",
"clean": "rm -r src",
"test": "mocha --require ts-node/register test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ismaelsadeeq/privateTx.git"
},
"keywords": [
"chain",
"analysis"
],
"author": "Abubakar Sadiq Ismail",
"license": "MIT",
"bugs": {
"url": "https://github.com/ismaelsadeeq/privateTx/issues"
},
"homepage": "https://github.com/ismaelsadeeq/privateTx#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"bitcoinjs-lib": "^6.1.0"
}
}