-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "node-hid-stream",
"version": "1.1.0",
"description": "Stream data from HID device in Node.js",
"main": "lib/node-hid-stream.js",
"engines": {
"node": ">=8"
},
"scripts": {
"ci": "npm run coverage && npm run lint",
"coverage": "istanbul cover jasmine && istanbul check-cover",
"dev": "nodemon --exec 'clear && npm run test --silent && clear && npm run lint --silent'",
"lint": "eslint spec examples",
"test": "jasmine"
},
"dependencies": {
"node-hid": "^0.7.9",
"split": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.0.1",
"istanbul": "^0.4.5",
"jasmine": "3.4.0",
"mockery": "^2.0.0",
"nodemon": "^1.19.1",
"proxyquire": "2.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/agirorn/node-hid-stream.git"
},
"keywords": [
"HID",
"USB",
"barcode",
"device",
"human",
"input",
"keyboard",
"stream"
],
"author": "Emily Rose <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Rony Kubat",
"email": "[email protected]"
},
{
"name": "Ægir Örn Símonarson",
"email": "[email protected]"
}
]
}