mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-28 16:15:49 +00:00
68 lines
2.0 KiB
JSON
68 lines
2.0 KiB
JSON
{
|
|
"name": "ripple-lib",
|
|
"version": "0.12.5-rc2",
|
|
"description": "A JavaScript API for interacting with Ripple in Node.js and the browser",
|
|
"files": [
|
|
"dist/npm/*",
|
|
"bin/*",
|
|
"build/*",
|
|
"test/*",
|
|
"Gulpfile.js"
|
|
],
|
|
"main": "dist/npm/",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"async": "~0.9.0",
|
|
"babel-runtime": "^5.5.4",
|
|
"bignumber.js": "^2.0.3",
|
|
"extend": "~1.2.1",
|
|
"is-my-json-valid": "^2.12.0",
|
|
"lodash": "^3.1.0",
|
|
"lru-cache": "~2.5.0",
|
|
"ripple-lib-transactionparser": "^0.3.2",
|
|
"ripple-wallet-generator": "^1.0.3",
|
|
"simple-asyncify": "^0.1.0",
|
|
"sjcl-extended": "ripple/sjcl-extended#1.0.3",
|
|
"ws": "~0.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"assert-diff": "^1.0.1",
|
|
"babel": "^5.5.4",
|
|
"babel-core": "^5.5.4",
|
|
"babel-loader": "^5.0.0",
|
|
"coveralls": "~2.10.0",
|
|
"eslint": "^0.18.0",
|
|
"eventemitter2": "^0.4.14",
|
|
"gulp": "~3.8.10",
|
|
"gulp-bump": "~0.1.13",
|
|
"gulp-rename": "~1.2.0",
|
|
"gulp-uglify": "~1.1.0",
|
|
"istanbul": "~0.3.5",
|
|
"mocha": "~2.1.0",
|
|
"webpack": "~1.5.3",
|
|
"yargs": "~1.3.1"
|
|
},
|
|
"scripts": {
|
|
"build": "gulp",
|
|
"clean": "rm -rf dist/npm && rm -rf build/flow",
|
|
"typecheck": "babel -i runtime --blacklist flow -d build/flow/ src/ && flow",
|
|
"compile": "babel -i runtime -d dist/npm/ src/",
|
|
"compile-with-source-maps": "babel -i runtime -s -t -d dist/npm/ src/",
|
|
"prepublish": "npm run clean && 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: esprima-fb' >> eslintrc; fi; eslint --reset -c eslintrc src/",
|
|
"perf": "./scripts/perf_test.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-lib.git"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"engines": {
|
|
"node": ">=0.12.0"
|
|
}
|
|
}
|