-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.86 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.86 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@anypay/walletbot",
"version": "1.10.1",
"public": true,
"private": false,
"description": "Your Money-Sending Robot Friend",
"main": "./dist/index.js",
"scripts": {
"start": "node dist/main.js start",
"test": "NODE_ENV=test nyc --reporter=lcov mocha --require=ts-node/register --timeout=20000 __tests__/**/*_test.ts --exit",
"runtest": "NODE_ENV=test nyc nyc --reporter=lcov mocha --require=ts-node/register --timeout=20000 $1",
"build": "tsc",
"heroku-postbuild": "tsc",
"postbuild": "shebang-trim dist/bin/cli.js && chmod +x dist/bin/cli.js",
"ci": "circleci local execute --job build",
"commit": "npx cz",
"seed-phrase": "seed-phrase",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"package": "npx pkg package.json",
"prettier": "npx prettier --write ."
},
"bin": {
"walletbot": "dist/main.js"
},
"pkg": {
"targets": [
"node16-linux-x64",
"node16-linux-arm64",
"node16-macos-x64",
"node16-macos-arm64",
"node16-win-x64"
],
"outputPath": "release"
},
"keywords": [],
"author": "Anypay",
"license": "",
"dependencies": {
"@dashevo/dashcore-mnemonic": "^1.6.1",
"@hapi/basic": "^7.0.0",
"@hapi/hapi": "^21.3.7",
"@hapi/inert": "^6.0.5",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.1.0",
"anypay": "^0.7.0",
"anypay-simple-wallet": "^0.4.0",
"axios": "^0.27.2",
"bip39": "^3.0.4",
"bitcore-lib-doge": "^8.25.40",
"commander": "^12.0.0",
"deepmerge": "^4.3.1",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"fastq": "^1.13.0",
"hapi-swagger": "^17.2.1",
"joi": "^17.6.0",
"nconf": "^0.12.0",
"node-cron": "^3.0.0",
"payment-protocol": "^0.3.0",
"pg": "^8.4.0",
"prom-client": "^14.0.1",
"prompt-async": "^0.9.9",
"rabbi": "^1.25.0",
"scrypt-ts": "^1.3.30",
"seed-phrase": "^1.0.0",
"socket.io-client": "^4.5.1",
"uuid": "^9.0.1",
"winston": "^3.3.3",
"winston-loki": "^6.0.5",
"winston-transport": "^4.5.0",
"ws": "^8.2.0"
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.6.0",
"@types/nconf": "^0.10.6",
"@types/node": "^8.10.66",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"markdown-table": "^3.0.3",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"pkg": "^5.8.1",
"prettier": "^3.2.5",
"shebang-trim": "^1.1.0",
"ts-node": "^3.3.0",
"typescript": "^3.9.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": false,
"all": true,
"include": [
"src/**.ts"
],
"reporter": "lcov",
"report-dir": "./coverage"
}
}