-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1001 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
37
38
39
{
"name": "programmingbitcoin",
"version": "0.1.0",
"description": "A NodeJS implementation of the code from Jimmy Song's Programming Bitcoin book.",
"repository": {
"type": "git",
"url": "https://github.com/jrawsthorne/programmingbitcoin"
},
"author": {
"name": "Jake Rawsthorne"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "ts-node-dev --respawn src/index.ts",
"test": "jest && codecov",
"test:dev": "jest"
},
"dependencies": {
"bech32": "^1.1.3",
"dotenv": "^8.0.0",
"node-fetch": "^2.6.0",
"smart-buffer": "^4.0.2",
"tiny-secp256k1": "^1.1.3"
},
"devDependencies": {
"@types/bech32": "^1.1.1",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@types/node-fetch": "^2.5.0",
"@types/tiny-secp256k1": "^1.0.0",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2"
}
}