-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 895 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
{
"name": "webauthn-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "tsc && node dest/index",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/cbor": "^2.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jsonwebtoken": "^8.3.4",
"@types/jwk-to-pem": "^2.0.0",
"@types/node": "^12.7.9",
"@types/uuid-parse": "^1.0.0"
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"body-parser": "^1.19.0",
"cbor": "^5.0.1",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.1",
"uuid-parse": "^1.1.0"
}
}