-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.43 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
{
"name": "ripplet",
"version": "4.1.0",
"description": "simple ripple wallet",
"main": "index.js",
"bin": {
"ripplet-cli": "./bin/ripplet-cli"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodevl index.js",
"start": "pm2 flush && pm2 startOrRestart ecosystem.config.js && pm2 logs ripple",
"release:git": "github-release release --user uniibu --repo ripplet --tag v4.1.0 --name \"v4.1.0\" --description \"ripplet wallet release\"",
"release:now": "yarn release:git",
"build:release": "docker build --no-cache -t unibtc/ripplet:latest -t unibtc/ripplet:4.1.0 . && git add . && git commit -m \"update\" && git push && yarn release:now && docker push unibtc/ripplet:latest && docker push unibtc/ripplet:4.1.0"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@devnodes/logger-client": "^1.1.2",
"big.js": "^5.2.1",
"boxen": "^4.2.0",
"commander": "^5.1.0",
"elliptic": "^6.5.2",
"fs-extra": "^9.0.1",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-bouncer": "^6.0.4",
"koa-router": "^9.0.1",
"lowdb": "^1.0.0",
"phin": "^3.5.0",
"promise-retry": "^1.1.1",
"queuing": "^1.3.0",
"ripple-keypairs": "^1.0.1",
"ripple-lib": "^1.7.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"xrpl-tagged-address-codec": "^0.2.1"
},
"devDependencies": {
"nodevl": "^1.0.2"
}
}