mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "ripple-binary-codec",
|
|
"version": "1.1.0",
|
|
"description": "XRP Ledger binary codec",
|
|
"files": [
|
|
"dist/*",
|
|
"bin/*",
|
|
"test/*"
|
|
],
|
|
"main": "dist/",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"assert": "^2.0.0",
|
|
"buffer": "5.6.0",
|
|
"big-integer": "^1.6.48",
|
|
"create-hash": "^1.2.0",
|
|
"decimal.js": "^10.2.0",
|
|
"ripple-address-codec": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.7",
|
|
"@types/node": "^14.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^3.2.0",
|
|
"@typescript-eslint/parser": "^3.2.0",
|
|
"eslint": "^7.7.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-import": "^2.21.1",
|
|
"eslint-plugin-jest": "^23.20.0",
|
|
"eslint-plugin-mocha": "^7.0.1",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"jest": "^26.0.1",
|
|
"prettier": "^2.0.4",
|
|
"typescript": "^3.9.5"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc && cp ./src/enums/definitions.json ./dist/enums",
|
|
"prepare": "npm run compile && npm test",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts --ext .test.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-binary-codec.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ripple/ripple-binary-codec/issues"
|
|
},
|
|
"homepage": "https://github.com/ripple/ripple-binary-codec#readme",
|
|
"license": "ISC",
|
|
"readmeFilename": "README.md",
|
|
"prettier": {
|
|
"semi": true
|
|
},
|
|
"engines": {
|
|
"node": ">=10.22.0",
|
|
"yarn": "^1.22.4"
|
|
}
|
|
}
|