-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nakamoto",
"version": "0.1.5",
"description": "Handle bitcoin payments in your application without using a third party service.",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"src",
"types",
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "run-s test:env test:integration",
"test:env": "docker-compose -f test/docker-compose.yml up -d --renew-anon-volumes && sleep 10",
"test:integration": "mocha -r test/ts-node-register --timeout 5000 test/**/*.spec.ts",
"lint": "run-s prettier tslint",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier --write ."
},
"keywords": [
"nakamoto",
"bitcoin",
"invoice",
"server",
"btc",
"payments"
],
"repository": {
"type": "git",
"url": "git+https://github.com/monokh/nakamoto.git"
},
"author": "monokh",
"license": "ISC",
"bugs": {
"url": "https://github.com/monokh/nakamoto/issues"
},
"homepage": "https://github.com/monokh/nakamoto#readme",
"dependencies": {
"axios": "^0.21.0",
"bip32": "^2.0.6",
"bitcoinjs-lib": "^5.2.0",
"bs58check": "^2.1.2",
"level": "^6.0.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/bip32": "^2.0.0",
"@types/levelup": "^4.3.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.7",
"@types/uuid": "^8.3.0",
"mocha": "^8.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}