mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
Given that eslint is adding TypeScript support, we can migrate back to ESLint in the future.
28 lines
624 B
JSON
28 lines
624 B
JSON
{
|
|
"name": "ripple-address-codec",
|
|
"version": "3.0.0",
|
|
"description": "encodes/decodes base58 encoded ripple identifiers",
|
|
"main": "dist/index.js",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"base-x": "3.0.4",
|
|
"create-hash": "^1.1.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-address-codec.git"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"test": "tsc && mocha",
|
|
"lint": "tslint -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^10.12.0",
|
|
"mocha": "^5.0.5",
|
|
"tslint": "^5.11.0",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typescript": "^3.1.3"
|
|
}
|
|
}
|