-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@bithomp/xrpl-api",
"version": "3.1.18",
"description": "A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Bithomp AB",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Bithomp/xrpl-api.git"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"xrpl",
"rippled",
"clio",
"xrp",
"nft",
"xls20",
"xls35",
"unl",
"bithomp",
"xahau",
"xahaud",
"xah",
"hooks",
"ws"
],
"funding": {
"type": "individual",
"url": "https://bithomp.com/donate"
},
"bugs": {
"url": "https://github.com/Bithomp/xrpl-api/issues"
},
"homepage": "https://github.com/Bithomp/xrpl-api#readme",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.json --ext .ts src/",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^1.7.7",
"base-x": "^5.0.0",
"bignumber.js": "^9.1.2",
"elliptic": "^6.6.1",
"lodash": "^4.17.21",
"ripple-address-codec": "^5.0.0",
"ripple-binary-codec": "^2.1.0",
"xrpl": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.9",
"@types/nconf": "^0.10.7",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.13.2",
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.8.2",
"nconf": "^0.12.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}