-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.61 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
{
"name": "u2f-host-node",
"version": "0.4.2",
"description": "A u2f host implementation in node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"example": "npm run build && node examples/main.js",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true mocha -r ts-node/register \"test/**/*.ts\"",
"test:dev": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true mocha -r ts-node/register -w --watch-extensions ts \"test/**/*.ts\"",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepublishOnly": "npm run clean && npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inkless/u2f-host-node.git"
},
"keywords": [
"u2f",
"u2f-host",
"yubikey"
],
"author": "Guangda Zhang <zhangxiaoyu9350@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inkless/u2f-host-node/issues"
},
"homepage": "https://github.com/inkless/u2f-host-node#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"@types/node-hid": "^0.7.3",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3",
"u2f": "^0.1.3"
},
"dependencies": {
"node-hid": "^1.1.0"
}
}