forked from NielsLeenheer/EscPosEncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "esc-pos-encoder",
"version": "2.0.0",
"description": "Create a set of commands that can be send to any receipt printer that supports ESC/POS",
"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/NielsLeenheer/EscPosEncoder.git"
},
"keywords": [
"pos",
"escpos",
"receipt",
"printer"
],
"author": "Niels Leenheer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NielsLeenheer/EscPosEncoder/issues"
},
"homepage": "https://github.com/NielsLeenheer/EscPosEncoder#readme",
"devDependencies": {
"browserify": "^17.0.0",
"buffer-to-uint8array": "^1.1.0",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"iconv-lite": "^0.6.3",
"mocha": "^9.0.2",
"uglify-es": "^3.3.9"
},
"dependencies": {
"canvas": "^2.8.0",
"canvas-dither": "^1.0.1",
"canvas-flatten": "^1.0.1",
"codepage-encoder": "git+https://github.com/NielsLeenheer/CodepageEncoder.git",
"linewrap": "^0.2.1"
}
}