Files
xahau.js/packages/ripple-binary-codec/package.json
Nathan Nichols cd0eb2b623 Refactor ./src/enums (#73)
* rewrote enums in TS
* changed folder name to src/definitions
2020-06-30 14:29:29 -07:00

54 lines
1.4 KiB
JSON

{
"name": "ripple-binary-codec",
"version": "0.3.0",
"description": "XRP Ledger binary codec",
"files": [
"distrib/npm/*",
"bin/*",
"test/*"
],
"main": "distrib/npm/",
"directories": {
"test": "test"
},
"dependencies": {
"bn.js": "^5.1.2",
"create-hash": "^1.2.0",
"decimal.js": "^10.2.0",
"inherits": "^2.0.4",
"lodash": "^4.17.15",
"ripple-address-codec": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.10",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"jest": "^26.0.1",
"typescript": "^3.9.5"
},
"scripts": {
"compile": "tsc && cp ./src/definitions/definitions.json ./dist/definitions",
"prepare": "npm run compile && npm test",
"test": "jest --coverage=true",
"lint": "eslint . --ext .ts --fix"
},
"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"
}