forked from mozilla/hawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 1.01 KB
/
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
{
"name": "@onslip/hawk",
"description": "HTTP Hawk Authentication Scheme",
"version": "9.0.2-onslip.3",
"repository": "git://github.com/onslip/hawk",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"keywords": [
"http",
"authentication",
"scheme",
"hawk"
],
"devDependencies": {
"@hapi/code": "8.x.x",
"@hapi/lab": "22.x.x",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "~0.4.4",
"rollup-plugin-polyfill-node": "~0.13.0",
"rollup": "^4.27.4"
},
"scripts": {
"build-browser": "rm -rf dist && rollup -c browser.rollup.config.mjs && echo 'export * from \"..\";' | tee dist/browser{,.min}.d.ts",
"prepublish": "npm run-script build-browser",
"test": "lab -a @hapi/code -t 100 -L",
"test-cov-html": "lab -a @hapi/code -r html -o coverage.html"
},
"license": "BSD-3-Clause"
}