keybase-ecurve
Version:
Elliptic curve cryptography, which uses keybase/bn for bignums
48 lines • 1.23 kB
JSON
{
"name": "keybase-ecurve",
"version": "1.0.1",
"description": "Elliptic curve cryptography, which uses keybase/bn for bignums",
"keywords": [
"cryptography",
"crypto",
"bitcoin",
"litecoin",
"elliptic",
"curve"
],
"devDependencies": {
"coveralls": "^3.0.6",
"jshint": "^2.10.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mochify": "^6.4.1",
"nyc": "^14.1.1"
},
"repository": {
"url": "https://github.com/keybase/ecurve",
"type": "git"
},
"main": "./lib/index.js",
"scripts": {
"coverage": "./node_modules/.bin/nyc cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
"jshint": "./node_modules/.bin/jshint --config jshint.json lib/*.js ; true",
"test": "mocha --ui bdd",
"unit": "./node_modules/.bin/mocha"
},
"dependencies": {
"bn": "^1.0.4"
},
"testling": {
"harness": "mocha",
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"chrome/latest",
"safari/6..latest",
"firefox/latest",
"iphone/6..latest",
"android-browser/4.2..latest"
]
}
}