forked from owstack/payment-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "payment-gateway",
"version": "1.0.5",
"description": "Accept payment in crypto currencies",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "NODE_ENV=test istanbul cover _mocha -- --recursive test/"
},
"keywords": [
"bitcoin",
"cash",
"litecoin",
"payment",
"gateway"
],
"author": "Ian Patton <ian@owstack.org>",
"license": "MIT",
"dependencies": {
"@owstack/bch-lib": "0.1.0",
"@owstack/bch-payment-protocol": "0.0.7",
"@owstack/bitcoind-rpc": "^1.0.0",
"@owstack/btc-lib": "0.0.4",
"@owstack/btc-payment-protocol": "0.0.5",
"@owstack/ltc-lib": "0.0.8",
"@owstack/ltc-payment-protocol": "0.0.2",
"boom": "^7.2.0",
"config": "^1.30.0",
"hapi": "^17.5.0",
"hapi-swagger": "^9.1.1",
"inert": "^5.1.0",
"joi": "^13.3.0",
"jsonwebtoken": "^8.3.0",
"jwks-rsa": "^1.3.0",
"lodash": "^4.17.10",
"mathjs": "^5.0.3",
"mongoose": "^5.1.2",
"nodemailer": "^4.6.7",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"uuid": "^3.2.1",
"vision": "^5.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"documentation": "^6.3.3",
"eslint": "^4.19.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"sinon": "^5.0.7",
"supertest": "^3.1.0"
}
}