forked from lsongdev/node-escpos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"name": "escpos",
"version": "2.5.2",
"description": "ESC/POS Printer driver for nodejs",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/song940/node-escpos.git"
},
"keywords": [
"escpos",
"printer"
],
"author": "Lsong <hi@lsong.org> (https://lsong.org)",
"contributors": [
"Jose Vera <hola@jose.com.co>",
"Sébastien Vidal <Psychopoulet@GitHub.com>",
"Yu Yongwoo <uyu423@gmail.com>",
"Attawit Kittikrairit <atton16@gmail.com>",
"Risley Lima <risley@rlimainfo.com.br>",
"Michael Kuenzli <michael.kuenzli@camptocamp.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/song940/node-escpos/issues"
},
"homepage": "https://github.com/song940/node-escpos#readme",
"dependencies": {
"qr-image": "*",
"get-pixels": "*",
"iconv-lite": "*",
"mutable-buffer": "^2.0.3"
},
"optionalDependencies": {
"usb": "*",
"serialport": "*",
"node-bluetooth": "*"
},
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=8.x"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
}
}