Initial import

This commit is contained in:
Nicholas Dudfield
2015-06-17 19:57:21 +07:00
parent 869e6e2553
commit 0198b2603f
6 changed files with 501 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
{
"name": "ripple-keypairs",
"version": "0.1.0",
"description": "ripple key pairs",
"files": [
"dist/npm/*",
"bin/*",
"build/*",
"test/*",
"Gulpfile.js"
],
"main": "dist/npm/",
"directories": {
"test": "test"
},
"dependencies": {
"babel-runtime": "^5.3.2",
"bn.js": "^2.0.5",
"hash.js": "^1.0.3",
"ripple-address-codec": "github:sublimator/ripple-address-codec"
},
"devDependencies": {
"assert-diff": "^1.0.1",
"babel": "^5.3.3",
"babel-core": "^5.3.2",
"lodash": "^3.9.3",
"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-clean-dest": "^0.1.0",
"gulp-filelog": "^0.4.1",
"gulp-flowtype": "^0.4.1",
"gulp-plumber": "^0.6.6",
"gulp-react": "^2.0.0",
"gulp-rename": "~1.2.0",
"gulp-uglify": "~1.1.0",
"gulp-util": "^3.0.3",
"gulp-watch": "^4.1.0",
"istanbul": "~0.3.5",
"map-stream": "~0.1.0",
"mocha": "~2.1.0",
"nock": "^0.34.1",
"webpack": "~1.5.3",
"yargs": "~1.3.1",
"hash.js": "^1.0.3",
"bn.js": "^2.0.5"
},
"scripts": {
"build": "gulp",
"compile": "babel -i runtime -d dist/npm/ src/",
"compile-with-source-maps": "babel -i runtime -s -t -d dist/npm/ src/",
"prepublish": "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'; fi; eslint --reset -c eslintrc src/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ripple/ripple-keypairs.git"
},
"engines": {
"node": ">=0.10.0"
},
"bugs": {
"url": "https://github.com/ripple/ripple-keypairs/issues"
},
"homepage": "https://github.com/ripple/ripple-keypairs#readme",
"author": "",
"license": "ISC"
}