-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.27 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.27 KB
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
{
"name": "@vincss-public-projects/fido2-client",
"version": "2.1.6",
"description": "FIDO2 Client for Node.js, support PIN protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && node-gyp rebuild",
"postinstall": "node-gyp rebuild",
"rebuild": "electron-rebuild",
"test": "mocha --bail --timeout 900000 -r ts-node/register tests/**/*.spec.ts",
"test:console": "tsc && cross-env FIDO2_CLIENT_DEBUG=TRUE node --enable-source-maps dist/test-console.js",
"test:electron": "tsc && npm run rebuild && cross-env FIDO2_CLIENT_DEBUG=TRUE FIDO2_CLIENT_FORCE_PRELOAD=TRUE electron --enable-source-maps dist/test-electron.js",
"example:cred-assert": "cross-env FIDO2_CLIENT_FORCE_PRELOAD=TRUE node --enable-source-maps example/cred-assert/index.js",
"example:hook": "npm run rebuild && cross-env FIDO2_CLIENT_FORCE_PRELOAD=TRUE electron --enable-source-maps example/hook/index.js"
},
"author": "VinCSS R&D",
"license": "MIT",
"devDependencies": {
"@types/bindings": "^1.5.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@types/node-hid": "^1.3.0",
"@types/readline-sync": "^1.4.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"electron": "^13.1.4",
"electron-rebuild": "^2.3.5",
"mocha": "^9.0.3",
"patch-package": "^6.4.7",
"readline-sync": "^1.4.10",
"ts-node": "^10.2.1",
"typescript": "4.3.2"
},
"dependencies": {
"@abandonware/noble": "github:abandonware/noble#pull/219/head",
"bindings": "^1.5.0",
"cbor": "^8.0.0",
"node-hid": "^2.1.1",
"rxjs": "^7.3.0"
},
"optionalDependencies": {
"noble-winrt": "github:fido-alliance/noble-winrt"
},
"repository": {
"type": "git",
"url": "git://github.com/VinCSS-Public-Projects/FIDO2Client.git"
},
"keywords": [
"fido2",
"fido2 client",
"client pin",
"webauthen",
"pin"
],
"bugs": {
"url": "https://github.com/VinCSS-Public-Projects/FIDO2Client/issues"
},
"homepage": "https://github.com/VinCSS-Public-Projects/FIDO2Client#readme"
}