forked from functino/buzz-buzzers
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.57 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
{
"name": "node-buzzers",
"version": "2.2.0",
"description": "Forked version of 'buzz-buzzers', updated and upgraded to support multiple USB dongles",
"keywords": [
"ps3",
"playstation",
"buzz",
"buzzers",
"usb",
"dongle",
"node",
"nodejs",
"quizz"
],
"author": "François Massart",
"repository": {
"type": "git",
"url": "git+https://github.com/francoismassart/node-buzzers.git"
},
"bugs": {
"url": "https://github.com/francoismassart/node-buzzers/issues"
},
"homepage": "https://github.com/francoismassart/node-buzzers#readme",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"start": "tsc",
"lint": "eslint .",
"predev": "npm run start",
"dev": "node examples/simple",
"test": "ava test",
"test:coverage": "nyc ava test",
"test:watch": "ava test --watch"
},
"dependencies": {
"node-hid": "^2.1.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/node-hid": "^1.3.1",
"@types/sinon": "^10.0.13",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"ava": "^5.2.0",
"eslint": "^8.33.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.15.1"
},
"license": "MIT",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}