You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
978 B
42 lines
978 B
{ |
|
"name": "hawk", |
|
"description": "HTTP Hawk Authentication Scheme", |
|
"version": "6.0.2", |
|
"author": "Eran Hammer <eran@hammer.io> (http://hueniverse.com)", |
|
"repository": "git://github.com/hueniverse/hawk", |
|
"main": "lib/index.js", |
|
"browser": "dist/browser.js", |
|
"keywords": [ |
|
"http", |
|
"authentication", |
|
"scheme", |
|
"hawk" |
|
], |
|
"engines": { |
|
"node": ">=4.5.0" |
|
}, |
|
"dependencies": { |
|
"hoek": "4.x.x", |
|
"boom": "4.x.x", |
|
"cryptiles": "3.x.x", |
|
"sntp": "2.x.x" |
|
}, |
|
"devDependencies": { |
|
"babel-cli": "^6.1.2", |
|
"babel-preset-es2015": "^6.1.2", |
|
"code": "4.x.x", |
|
"lab": "14.x.x" |
|
}, |
|
"babel": { |
|
"presets": [ |
|
"es2015" |
|
] |
|
}, |
|
"scripts": { |
|
"build-client": "mkdir -p dist; babel lib/browser.js --out-file dist/browser.js", |
|
"prepublish": "npm run-script build-client", |
|
"test": "lab -a code -t 100 -L", |
|
"test-cov-html": "lab -a code -r html -o coverage.html" |
|
}, |
|
"license": "BSD-3-Clause" |
|
}
|
|
|