forked from murray-rothbot/murray-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 810 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 810 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": "murray-js",
"version": "1.1.0",
"description": "Open APIs to easily integrate your projects with the Bitcoin ecosystem.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"examples-blockchain": "ts-node examples/blockchain.ts",
"examples-lightning": "ts-node examples/lightning.ts",
"examples-prices": "ts-node examples/prices.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7"
}
}