bitauth/package.json

46 lines
1.0 KiB
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"
},
"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",
2014-06-29 15:01:41 -07:00
"test": "mocha test/* --reporter spec",
2014-06-25 10:56:24 -07:00
"postinstall": "npm run make-dist"
},
"main": "index.js",
"version": "0.1.1",
2014-08-20 12:46:01 -07:00
"repository": "https://github.com/bitpay/bitauth.git",
2014-05-27 09:04:57 -07:00
"dependencies": {
2014-07-18 12:15:03 -07:00
"bitcore": "0.1.32",
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",
2014-06-25 11:15:41 -07:00
"browserify": "~4.1.11",
"should": "~4.0.4",
2014-07-16 10:46:49 -07:00
"expect.js": "~0.3.1",
2014-06-25 11:15:41 -07:00
"mocha": "~1.20.1"
2014-05-27 09:04:57 -07:00
}
}