forked from Overtorment/Cashier-BTC
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "BTCz-Pay",
"version": "0.2.1",
"description": "Self-hosted BitcoinZ payment gateway",
"main": "btcz-pay.js",
"repository": "https://github.com/MarceluCH/BTCz-Pay",
"license": "MIT",
"author": "Marcelus",
"scripts": {
"postinstall": "mkdir -p qr && chmod 777 qr",
"test": "nodejs ./node_modules/.bin/standard && nodejs ./node_modules/.bin/mocha --exit tests/*",
"clean": "rm -r -f ./node_modules/ && rm -r -f ./qr/"
},
"dependencies": {
"bitcore-lib-btcz": "https://github.com/bitcoinz-dev-tools/bitcore-lib-btcz.git",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jayson": "^3.4.4",
"mocha": "^8.1.1",
"morgan": "^1.10.0",
"uuid": "^8.3.2",
"nodemailer": "^6.5.0",
"qr-image": "^3.2.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rewire": "^5.0.0",
"sinon": "^10.0.0",
"standard": "^14.3.4",
"supertest": "^6.1.3",
"valid-url": "^1.0.9",
"winston": "^3.3.3",
"zmq": "^2.15.3"
}
}