forked from mozilla/hawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 954 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "hawk",
"description": "HTTP Hawk Authentication Scheme",
"version": "7.0.7",
"author": "Eran Hammer <[email protected]> (http://hueniverse.com)",
"repository": "git://github.com/hueniverse/hawk",
"main": "lib/index.js",
"browser": "dist/browser.js",
"keywords": [
"http",
"authentication",
"scheme",
"hawk"
],
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"hoek": "5.x.x",
"boom": "7.x.x",
"cryptiles": "4.x.x",
"sntp": "3.x.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"code": "5.x.x",
"lab": "15.x.x"
},
"scripts": {
"build-client": "mkdir -p dist; babel lib/browser.js --out-file dist/browser.js",
"prepare": "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"
}