This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fido2-middleware",
"version": "0.0.15",
"description": ":key: A middleware implementation of fido2 for Express",
"main": "lib/src/index.js",
"types": "lib/src/index",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "mocha --recursive --require ts-node/register \\\"test/**/*.ts\\\"",
"cover": "nyc npm test",
"lint": "eslint -c ./.eslintrc.json '{src,test}/*.{ts,tsx}'",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kg0r0/fido2-middleware.git"
},
"keywords": [
"webauthn",
"fido2",
"express",
"typescript",
"middleware"
],
"author": "Kento Goro",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kg0r0/fido2-middleware/issues"
},
"homepage": "https://github.com/kg0r0/fido2-middleware#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/config": "0.0.34",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.12",
"@types/sinon": "^7.5.0",
"@types/sinon-express-mock": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"all-contributors-cli": "^6.9.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"sinon": "^7.5.0",
"sinon-express-mock": "^2.2.0",
"supertest": "^4.0.2",
"ts-node": "^8.1.0",
"typemoq": "^2.1.0",
"typescript": "^3.9.3"
},
"dependencies": {
"@types/express-session": "^1.15.12",
"base64url": "^3.0.1",
"config": "^3.2.3",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"crypto": "^1.0.1",
"express": "^4.16.4",
"fido2-lib": "git://github.com/kg0r0/fido2-lib.git",
"fs": "0.0.1-security",
"node-cache": "^4.2.0",
"string-to-arraybuffer": "^1.0.2",
"url": "^0.11.0"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap": true
}
}