forked from La-source/pos-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 904 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
37
38
39
40
41
42
{
"name": "pos-printer",
"version": "1.0.12",
"description": "ESC/POS printer driver for nodejs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint **/*.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/La-source/pos-printer.git"
},
"keywords": [
"thermal printer",
"thermal",
"printer",
"printer esc",
"esc code",
"epson",
"star"
],
"author": "Philippe Bauwens <ph.bauwens@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.1.8",
"eslint": "^6.8.0",
"husky": "^4.2.0"
},
"dependencies": {
"bluetooth-serial-port": "^2.2.7",
"iconv-lite": "^0.5.1",
"local-devices": "^3.0.0",
"serialport": "^8.0.6",
"usb": "^1.6.2"
}
}