forked from fido-alliance/webauthn-demo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "webauthn-tutorial",
"version": "0.0.1",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint ./server/**/*.js ./static/js/*.js --fix"
},
"dependencies": {
"@lapo/asn1js": "^1.0.2",
"base64url": "^2.0.0",
"body-parser": "^1.15.2",
"cbor": "^3.0.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"elliptic": "^6.4.1",
"express": "^4.15.4",
"jsrsasign": "^8.0.12",
"lokijs": "^1.5.6",
"node-rsa": "^1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fido-alliance/"
},
"private": true,
"author": "Yuriy Ackermann <[email protected]> (https://jeman.de/)",
"bugs": {
"url": "https://github.com/fido-alliance//issues",
"email": "[email protected]"
},
"homepage": "https://github.com/fido-alliance/#readme",
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.4"
}
}