hawk/package.json

41 строка
966 B
JSON
Исходник Обычный вид История

2012-11-24 13:01:57 +04:00
{
2012-11-25 00:32:21 +04:00
"name": "hawk",
"description": "HTTP Hawk Authentication Scheme",
2016-09-04 08:46:39 +03:00
"version": "5.2.0",
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",
"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": {
2015-11-06 03:00:21 +03:00
"node": ">=4.0.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-05-25 21:47:39 +03:00
"code": "3.x.x",
2016-09-04 08:46:39 +03:00
"lab": "11.x.x"
2012-11-24 13:01:57 +04:00
},
2015-11-06 03:11:10 +03:00
"babel": {
"presets": ["es2015"]
},
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",
"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
},
"license": "BSD-3-Clause"
2012-11-24 13:01:57 +04:00
}