bitauth/package.json

45 lines
954 B
JSON
Raw Normal View History

2014-05-27 09:04:57 -07:00
{
"name": "bitauth",
"description": "Passwordless authentication using Bitcoin cryptography",
"author": {
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
},
2014-09-03 08:47:20 -07:00
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitauth.git"
},
2014-06-25 10:56:24 -07:00
"contributors": [
2014-06-29 15:01:41 -07:00
{
"name": "Eric Martindale",
"email": "eric@ericmartindale.com"
},
2014-06-25 10:56:24 -07:00
{
"name": "Gordon Hall",
"email": "gordon@bitpay.com"
2014-11-04 07:53:37 -08:00
},
{
"name": "Braydon Fuller",
"email": "braydon@bitpay.com"
2014-06-25 10:56:24 -07:00
}
],
"scripts": {
"make-dist": "sh scripts/make-dist.sh",
"test": "mocha test/*.js --reporter spec"
2014-06-25 10:56:24 -07:00
},
"main": "index.js",
2015-02-02 17:56:36 -08:00
"version": "0.2.1",
2014-05-27 09:04:57 -07:00
"dependencies": {
"bs58": "^2.0.0",
"elliptic": "=1.0.0",
"secp256k1": "=1.1.3"
2014-06-25 10:56:24 -07:00
},
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "=6.1.0",
2014-10-20 14:35:49 -07:00
"chai": "=1.9.1",
"uglify-js": "~2.4.14",
2014-06-25 11:15:41 -07:00
"mocha": "~1.20.1"
2014-05-27 09:04:57 -07:00
}
}