forked from haavardlian/escpos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"version": "2.0.0",
"name": "escpos-print",
"bugs": {
"url": "https://github.com/haavardlian/escpos/issues"
},
"keywords": [
"esc/pos",
"escpos",
"typescript"
],
"description": "Library for printing to ESC/POS compatible printers",
"homepage": "https://github.com/haavardlian/escpos",
"main": "src/index.js",
"typings": "src/",
"files": [
"src/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/haavardlian/escpos.git"
},
"author": {
"name": "Håvard Lian",
"email": "[email protected]",
"url": "https://github.com/haavardlian"
},
"contributors": [],
"devDependencies": {
"@types/node": "10.12.17",
"@types/serialport": "7.0.1",
"@types/usb": "1.1.6",
"@types/pngjs": "3.3.2",
"@types/ws": "6.0.1",
"fs-extra": "7.0.1",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"typescript": "3.2.2"
},
"dependencies": {
"iconv-lite": "0.4.24",
"pngjs": "3.3.3"
},
"optionalDependencies": {
"serialport": "7.1.0",
"usb": "1.5.0",
"ws": "6.1.2"
},
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"pack": "npm run compile && node scripts/createPackageDir.js",
"preversion": "node scripts/isMaster.js && npm run lint",
"version": "npm run pack",
"postversion": "git push && git push --tags"
}
}