This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@xpring-eng/xrp-cli",
"version": "0.1.2",
"license": "ISC",
"description": "A Node-based CLI for the XRP Ledger",
"main": "dist/xrp.js",
"bin": {
"xrp": "dist/xrp.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "yarn clean && tsc --build",
"clean": "rm -rf dist",
"lint": "eslint 'src/**/*.ts' --fix",
"start": "node dist/xrp.js",
"test": "nyc ava",
"watch": "ava --watch",
"prepublish": "yarn lint && yarn build"
},
"dependencies": {
"@types/inquirer": "^6.5.0",
"commander": "^4.1.0",
"conf": "^6.2.0",
"inquirer": "^7.0.3",
"ora": "^4.0.3",
"ripple-address-codec": "^4.1.0",
"ripple-lib": "^1.6.2"
},
"devDependencies": {
"@types/node": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.0",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=10"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpring-eng/xrp-cli.git"
},
"keywords": [
"cli",
"xrp"
],
"bugs": {
"url": "https://github.com/xpring-eng/xrp-cli/issues"
},
"homepage": "https://github.com/xpring-eng/xrp-cli#readme"
}