mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-30 09:05:50 +00:00
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "ripple-keypairs",
|
|
"version": "0.9.0",
|
|
"description": "ripple key pairs",
|
|
"files": [
|
|
"distrib/npm/*",
|
|
"bin/*",
|
|
"build/*",
|
|
"test/*"
|
|
],
|
|
"main": "distrib/npm/",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^5.8.20",
|
|
"bn.js": "^3.1.1",
|
|
"brorand": "^1.0.5",
|
|
"elliptic": "^5.1.0",
|
|
"hash.js": "^1.0.3",
|
|
"ripple-address-codec": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"assert-diff": "^1.0.1",
|
|
"babel": "^5.8.20",
|
|
"babel-core": "^5.8.20",
|
|
"babel-eslint": "^4.0.5",
|
|
"babel-loader": "^5.3.2",
|
|
"coveralls": "~2.10.0",
|
|
"eslint": "^1.2.1",
|
|
"eventemitter2": "^0.4.14",
|
|
"istanbul": "~0.3.5",
|
|
"lodash": "^3.10.0",
|
|
"map-stream": "~0.1.0",
|
|
"mocha": "~2.1.0",
|
|
"nock": "^0.34.1",
|
|
"ripple-lib": "^0.12.4",
|
|
"webpack": "~1.5.3",
|
|
"yargs": "~1.3.1"
|
|
},
|
|
"scripts": {
|
|
"build": "gulp",
|
|
"compile": "babel --optional runtime -d distrib/npm/ src/",
|
|
"compile-with-source-maps": "babel --optional runtime -s -t -d distrib/npm/ src/",
|
|
"prepublish": "npm test && npm run lint && npm run compile",
|
|
"test": "istanbul test _mocha",
|
|
"coveralls": "cat ./coverage/lcov.info | coveralls",
|
|
"lint": "if ! [ -f eslintrc ]; then curl -o eslintrc 'https://raw.githubusercontent.com/ripple/javascript-style-guide/es6/eslintrc'; echo 'parser: babel-eslint' >> eslintrc; fi; eslint -c eslintrc src/*.js test/*.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-keypairs.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.12.0"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ripple/ripple-keypairs/issues"
|
|
},
|
|
"homepage": "https://github.com/ripple/ripple-keypairs#readme",
|
|
"license": "ISC",
|
|
"readmeFilename": "README.md"
|
|
}
|