-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "escpos-buffer",
"version": "4.1.0",
"description": "Library to generate buffer for thermal printers.",
"author": "GrandChef Team <desenvolvimento@grandchef.com.br>",
"license": "MIT",
"engines": {
"node": ">= 14"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/grandchef/escpos-buffer.git"
},
"homepage": "https://github.com/grandchef/escpos-buffer#readme",
"bugs": {
"url": "https://github.com/grandchef/escpos-buffer/issues"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "tsc -d -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"style:fix": "prettier --write \"src/**/*.ts\"",
"style:check": "prettier --check \"src/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk=9229 node_modules/.bin/jest -i"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^12.12.5",
"@types/w3c-web-usb": "1.0.6",
"@types/web-bluetooth": "^0.0.16",
"escpos-buffer-image": "^1.1.0",
"jest": "^29.4.1",
"prettier": "^2.8.8",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.21.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}