bitauth/package.json

44 lines
957 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"
}
],
"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",
"version": "0.1.1",
2014-05-27 09:04:57 -07:00
"dependencies": {
"elliptic": "=0.15.11",
"hash.js": "=0.3.2",
"bs58": "=2.0.0",
2014-05-27 09:04:57 -07:00
"request": "^2.36.0",
"express": "^4.3.1",
"base58-native": "^0.1.4",
"body-parser": "^1.2.0"
2014-06-25 10:56:24 -07:00
},
"devDependencies": {
"uglify-js": "~2.4.14",
"browserify": "=6.1.0",
2014-10-20 14:35:49 -07:00
"chai": "=1.9.1",
2014-06-25 11:15:41 -07:00
"mocha": "~1.20.1"
2014-05-27 09:04:57 -07:00
}
}