forked from XRPL-Labs/XRPL-Orderbook-Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "xrpl-orderbook-reader",
"version": "0.3.3",
"description": "Parse XRPL Order Book results into effective liquidity based exchange prices",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"dev": "clear; npm run build; DEBUG=orderbook* nodemon dist/samples/Sample.js",
"test": "jest --ci --verbose",
"lint": "tslint -p ./"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"directories": {
"test": "test"
},
"dependencies": {
"@types/debug": "^4.1.5",
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"jest": "^24.8.0",
"rippled-ws-client": "^1.6.1",
"ts-jest": "^26.1.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.5"
},
"repository": {
"type": "git",
"url": "git://github.com:XRPL-Labs/XRPL-Orderbook-Reader.git"
},
"bugs": {
"url": "https://github.com/XRPL-Labs/XRPL-Orderbook-Reader/issues"
},
"homepage": "https://github.com/XRPL-Labs/XRPL-Orderbook-Reader/#readme",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"xrp",
"xrpl-ledger",
"dex",
"liquidity",
"offers",
"orders"
]
}