forked from webauthn-open-source/fido2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.3 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "fido2-lib",
"version": "2.5.1",
"description": "A library for performing FIDO 2.0 / WebAuthn functionality",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "nyc mocha",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov -e TRAVIS_NODE_VERSION",
"docs": "jsdoc -c ./.jsdoc-conf.json",
"publish-docs": "gh-pages --repo https://[email protected]/webauthn-open-source/fido2-lib.git --dist docs"
},
"keywords": [
"webauthn",
"authentication",
"fido",
"fido2",
"web authentication",
"u2f",
"server"
],
"author": "Adam Powers, JamesCullum & Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webauthn-open-source/fido2-lib"
},
"bugs": {
"url": "https://github.com/webauthn-open-source/fido2-lib/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.7.0",
"docdash": "^0.4.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"fido2-helpers": "^1.7.2",
"gh-pages": "^2.2.0",
"jsdoc": "^3.5.5",
"mocha": "^6.1.4",
"mockery": "^2.0.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
},
"dependencies": {
"@peculiar/webcrypto": "^1.1.4",
"asn1js": "^2.0.26",
"cbor": "^4.0.0",
"cose-to-jwk": "^1.1.0",
"jwk-to-pem": "^2.0.0",
"node-jose": "^2.0.0",
"pkijs": "=2.1.58",
"psl": "^1.1.24"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended"
],
"rules": {
"no-mixed-spaces-and-tabs": "error",
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "ignore"
}
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"semi": [
"error",
"always"
],
"no-multiple-empty-lines": [
"error",
{
"max": 2,
"maxEOF": 1
}
]
},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)"
],
"env": {
"mocha": true
}
}
]
}
}