forked from mikerovers/usb-barcode-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 924 Bytes
/
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
{
"name": "usb-barcode-scanner-2",
"version": "1.0.3",
"description": "A typed library for using USB barcode scanners in Node.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/mikerovers/typescript-usb-barcode-scanner",
"author": "Marko Vasileski",
"license": "MIT",
"homepage": "https://github.com/markovchainz/usb-barcode-scanner#readme",
"keywords": [
"node",
"usb",
"barcode",
"scanner",
"hid"
],
"bugs": {
"url": "https://github.com/markovchainz/usb-barcode-scanner/issues"
},
"dependencies": {
"@types/lodash": "^4.14.108",
"@types/node-hid": "^0.7.0",
"lodash": "^4.17.10",
"node-hid": "^0.7.9"
},
"devDependencies": {
"typescript": "^2.8.3",
"@types/node": "^9.6.6"
},
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && tsc -p .",
"clean": "rm -rf dist"
}
}