-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "xrpl-txdata",
"version": "2.0.1",
"description": "Fetch XRPL transaction by hash (+ meta & balances), awaits if required",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "npm run clean && npm run lint && npm run test && npm run build && npm run browserify",
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"dev": "clear; npm run build; DEBUG=txdata* nodemon dist/samples/dev.js",
"browserify": "browserify -r ./dist/src/index.js:TxData -o dist/browser.js && npm run minify",
"minify": "cat dist/browser.js | terser --compress --mangle > dist/browser.min.js",
"dev-sample": "clear; npm run build && DEBUG=txdata:sample* nodemon dist/samples/dev.js",
"test": "DEBUG=txdata:tests* jest --ci --verbose",
"lint": "tslint -p ./"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"dependencies": {
"@types/lodash": "^4.14.161",
"@types/websocket": "^1.0.1",
"bignumber.js": "^9.0.1",
"debug": "^4.1.1",
"lodash": "^4.17.20",
"websocket": "^1.0.32"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.12",
"@types/node": "^12.12.55",
"browserify": "^16.5.2",
"jest": "^26.4.2",
"mock-socket": "^9.0.3",
"terser": "^5.3.4",
"ts-jest": "^26.3.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.5"
},
"repository": {
"type": "git",
"url": "git://github.com:XRPL-Labs/XrplTxData.git"
},
"bugs": {
"url": "https://github.com/XRPL-Labs/XrplTxData/issues"
},
"homepage": "https://github.com/XRPL-Labs/XrplTxData/#readme",
"license": "MIT",
"readmeFilename": "README.md",
"keywords": [
"xrp",
"xrpl",
"xumm",
"transaction",
"data",
"tx"
]
}