-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.47 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
{
"name": "@s1r-j/fido2server-lib",
"version": "0.3.0",
"description": "Module to help implement FIDO2 server.",
"main": "index.js",
"types": "./dist/index.d.ts",
"files": [
"index.js",
"dist/*"
],
"scripts": {
"clean": "rimraf dist/*",
"test": "tap __test__/**/*.test.ts --ts --no-check-coverage --timeout=60",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"prepublishOnly": "npm run build",
"check-types": "tsc -p tsconfig.eslint.json --noEmit",
"depcheck": "depcheck",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"lint": "npm run eslint && npm run check-types",
"doc": "typedoc --tsconfig tsconfig.base.json --entryPoints src --entryPointStrategy expand --plugin typedoc-plugin-rename-defaults --out ./docs"
},
"keywords": [
"webauthn",
"web authentication",
"fido",
"fido2",
"authentication",
"server"
],
"author": "s1r-J",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/s1r-J/fido2server-lib"
},
"bugs": {
"url": "https://github.com/s1r-J/fido2server-lib/issues"
},
"homepage": "https://s1r-j.github.io/fido2server-lib",
"dependencies": {
"@lapo/asn1js": "^1.2.3",
"@peculiar/x509": "^1.3.2",
"asn1js": "^3.0.5",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"cbor": "^7.0.6",
"dayjs": "^1.11.5",
"extensible-custom-error": "0.0.7",
"fido-mds3": "^0.3.3-20220606",
"jsrsasign": "^10.5.27",
"lodash.get": "^4.4.2",
"parse-cosekey": "^1.0.2",
"psl": "^1.9.0",
"str2ab": "^1.2.1"
},
"devDependencies": {
"@types/jsrsasign": "^10.5.4",
"@types/lodash.get": "^4.4.7",
"@types/node": "^14.17.0",
"@types/psl": "^1.1.0",
"@types/sinon": "^10.0.13",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"coveralls": "^3.1.1",
"depcheck": "^1.4.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"gh-pages": "^4.0.0",
"mockttp": "^3.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.6.6",
"tsconfig-paths": "^4.0.0",
"typedoc": "^0.23.13",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.8.4"
}
}