2012-11-24 13:01:57 +04:00
|
|
|
{
|
2012-11-25 00:32:21 +04:00
|
|
|
"name": "hawk",
|
|
|
|
"description": "HTTP Hawk Authentication Scheme",
|
2017-07-18 03:40:06 +03:00
|
|
|
"version": "6.0.2",
|
2014-08-02 11:31:14 +04:00
|
|
|
"author": "Eran Hammer <eran@hammer.io> (http://hueniverse.com)",
|
2012-11-25 00:32:21 +04:00
|
|
|
"repository": "git://github.com/hueniverse/hawk",
|
2015-06-13 22:04:03 +03:00
|
|
|
"main": "lib/index.js",
|
2015-11-06 03:11:10 +03:00
|
|
|
"browser": "dist/browser.js",
|
2012-11-24 13:01:57 +04:00
|
|
|
"keywords": [
|
|
|
|
"http",
|
|
|
|
"authentication",
|
|
|
|
"scheme",
|
2012-11-25 00:32:21 +04:00
|
|
|
"hawk"
|
2012-11-24 13:01:57 +04:00
|
|
|
],
|
|
|
|
"engines": {
|
2016-09-04 08:56:16 +03:00
|
|
|
"node": ">=4.5.0"
|
2012-11-24 13:01:57 +04:00
|
|
|
},
|
2012-11-30 08:24:12 +04:00
|
|
|
"dependencies": {
|
2016-05-25 21:47:39 +03:00
|
|
|
"hoek": "4.x.x",
|
2016-09-04 08:46:39 +03:00
|
|
|
"boom": "4.x.x",
|
2015-11-06 03:00:21 +03:00
|
|
|
"cryptiles": "3.x.x",
|
|
|
|
"sntp": "2.x.x"
|
2012-11-30 08:24:12 +04:00
|
|
|
},
|
2012-11-24 13:01:57 +04:00
|
|
|
"devDependencies": {
|
2015-11-06 03:11:10 +03:00
|
|
|
"babel-cli": "^6.1.2",
|
|
|
|
"babel-preset-es2015": "^6.1.2",
|
2016-12-01 08:43:22 +03:00
|
|
|
"code": "4.x.x",
|
2017-07-18 03:40:06 +03:00
|
|
|
"lab": "14.x.x"
|
2012-11-24 13:01:57 +04:00
|
|
|
},
|
2015-11-06 03:11:10 +03:00
|
|
|
"babel": {
|
2017-07-18 03:40:06 +03:00
|
|
|
"presets": [
|
|
|
|
"es2015"
|
|
|
|
]
|
2015-11-06 03:11:10 +03:00
|
|
|
},
|
2012-11-24 13:01:57 +04:00
|
|
|
"scripts": {
|
2015-12-08 23:26:15 +03:00
|
|
|
"build-client": "mkdir -p dist; babel lib/browser.js --out-file dist/browser.js",
|
2015-11-06 03:11:10 +03:00
|
|
|
"prepublish": "npm run-script build-client",
|
2015-06-13 22:04:03 +03:00
|
|
|
"test": "lab -a code -t 100 -L",
|
|
|
|
"test-cov-html": "lab -a code -r html -o coverage.html"
|
2012-11-24 13:01:57 +04:00
|
|
|
},
|
2015-06-13 22:04:03 +03:00
|
|
|
"license": "BSD-3-Clause"
|
2012-11-24 13:01:57 +04:00
|
|
|
}
|