forked from ooosbkf/turtlepay-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "turtlepay-wallet",
"version": "0.1.0",
"description": "TurtlePay: TurtleCoin Wallet Service (TWS)",
"main": "index.js",
"scripts": {
"test": "standard",
"start": "node index.js",
"creator": "node index.js creator",
"scanner": "node index.js scanner",
"sender": "node index.js sender"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TurtlePay/turtlepay-wallet.git"
},
"keywords": [
"TurtlePay"
],
"author": "TurtlePay Development Team",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/TurtlePay/turtlepay-wallet/issues"
},
"homepage": "https://github.com/TurtlePay/turtlepay-wallet#readme",
"devDependencies": {
"standard": "^13.1.0"
},
"dependencies": {
"aes-js": "^3.1.2",
"amqplib": "^0.5.6",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"pem": "^1.14.4",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"turtlecoin-utils": "^1.0.20",
"uuid": "^3.4.0"
}
}