-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.35 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
59
60
61
62
63
64
65
{
"name": "@posprint/command-builder",
"version": "0.0.50",
"description": "JavaScript library that implements the ESC/POS and TSC protocol to buffer.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sloth-dance/command-builder.git"
},
"bugs": {
"url": "https://github.com/sloth-dance/command-builder/issues"
},
"homepage": "https://github.com/sloth-dance/command-builder#README.md",
"author": "diegui.yu <[email protected]>",
"license": "MIT",
"keywords": [
"ESC/POS",
"TSC"
],
"files": [
"lib",
"index.js",
"README.md"
],
"dependencies": {
"eaw": "^0.1.5",
"escpos": "3.0.0-alpha.3",
"is-chinese": "^1.2.9",
"joi": "14.3.1",
"qrcode": "^1.4.4"
},
"devDependencies": {
"coveralls": "^3.1.0",
"escpos-network": "^3.0.0-alpha.5",
"escpos-usb": "^3.0.0-alpha.4",
"jest": "^25.1.0",
"power-assert": "^1.6.1",
"standard": "*"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "standard --fix"
},
"standard": {
"env": [
"jest",
"node"
],
"ignore": [
"examples"
]
},
"jest": {
"testMatch": [
"**/test/**/*.test.js"
],
"clearMocks": true,
"coverageReporters": [
"text-summary",
"lcov"
],
"testEnvironment": "node"
}
}