hawk/package.json

36 строки
865 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",
2018-11-03 08:18:20 +03:00
"version": "7.0.10",
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
],
2012-11-30 08:24:12 +04:00
"dependencies": {
2018-11-03 08:01:26 +03:00
"hoek": "6.x.x",
"b64": "4.x.x",
2017-11-03 10:31:52 +03:00
"boom": "7.x.x",
2017-10-27 00:23:40 +03:00
"cryptiles": "4.x.x",
"sntp": "3.x.x"
2012-11-30 08:24:12 +04:00
},
2012-11-24 13:01:57 +04:00
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
2017-10-27 00:23:40 +03:00
"code": "5.x.x",
2018-11-03 08:01:26 +03:00
"lab": "17.x.x"
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",
2017-10-27 00:23:40 +03:00
"prepare": "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
}