forked from NielsLeenheer/EscPosEncoder
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "esc-pos-encoder-ionic",
"version": "1.1.3",
"description": "Create a set of commands that can be send to any receipt printer that supports ESC/POS. Support Ionic (Typescript)",
"main": "src/esc-pos-encoder.js",
"scripts": {
"bundle": "browserify src/esc-pos-encoder.js --standalone EscPosEncoder -o dist/esc-pos-encoder.js",
"uglify": "uglifyjs dist/esc-pos-encoder.js -cm --overwrite -o dist/esc-pos-encoder.js",
"build": "npm run bundle && npm run uglify",
"lint": "eslint --fix src/esc-pos-encoder.js",
"mocha": "mocha test/",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ans0n-Ti0/EscPosEncoder.git"
},
"keywords": [
"pos",
"escpos",
"receipt",
"printer",
"ionic",
"ionic4",
"ionic5"
],
"author": "Anson Tio",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ans0n-Ti0/EscPosEncoder/issues"
},
"homepage": "https://github.com/Ans0n-Ti0/EscPosEncoder#readme",
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"mocha": "^4.1.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"buffer-to-uint8array": "^1.1.0",
"canvas": "^2.6.1",
"canvas-dither": "^1.0.0",
"canvas-flatten": "^1.0.0",
"iconv-lite": "^0.4.19",
"linewrap": "^0.2.1"
}
}