-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "@tillpos/xml-escpos-helper",
"description": "ESC/POS with XML interface",
"keywords": [
"escpos",
"esc",
"pos",
"xml",
"printer"
],
"version": "0.3.1",
"files": [
"lib",
"LICENSE",
"README.md"
],
"main": "lib/index",
"types": "lib",
"engines": {
"node": ">=4.0.0"
},
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn compile -- -w",
"clean": "rm -rf ./lib && rm -rf tsconfig.build.tsbuildinfo",
"compile": "tsc -p ./tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "http://github.com/oolio-group/xml-escpos-helper.git"
},
"contributors": [
"Snehit Velma <snehithvelma@gmail.com>"
],
"bugs": {
"url": "https://github.com/oolio-group/xml-escpos-helper/issues"
},
"dependencies": {
"buffer": "^6.0.3",
"mustache": "^4.1.0",
"mutable-buffer": "2.0.3",
"ndarray": "^1.0.19",
"upng-js": "2.1.0",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/xml-parser": "^1.2.29",
"ts-loader": "^2.3.4",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^4.1.3"
}
}