-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.08 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "webauthn-skeleton",
"version": "0.9.9",
"description": "Skeleton for a Node.js powered Web Authentication API enabled website",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./**/*.js",
"lint:fix": "eslint --fix ./**/*.js",
"start": "node app.js"
},
"keywords": [
"webauthn",
"fido2",
"security key",
"u2f",
"yubikey",
"hello",
"windows hello",
"passwordless",
"assword",
"koa",
"koajs"
],
"author": "Hexagon <[email protected]>",
"contributors": [
"Pinta365@GitHub"
],
"bugs": {
"url": "https://github.com/hexagon/webauthn-skeleton/issues"
},
"homepage": "https://github.com/hexagon/webauthn-skeleton#readme",
"license": "MIT",
"dependencies": {
"@hexagon/base64": "^1.0.20",
"@koa/router": "^10.1.1",
"fido2-lib": "~3.2.4",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"node-json-db": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.18.0"
}
}