-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
67 lines (67 loc) · 1.96 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
66
67
{
"name": "electron-pos-printer",
"version": "1.3.6",
"description": "Electron printer plugin for 80mm, 78mm, 76mm, 58mm, 57mm, 44mm printers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha",
"start": "npm run build && npm run demo",
"demo": "electron ./demo/",
"clean": "shx rm -rf dist",
"build": "npm run clean && webpack",
"test:all": "mocha -R mocha-jenkins-reporter --timeout 20000 \"./src/test/**/*test-*.js\"",
"test:one": "mocha --watch -u bdd \"./src/test/**/test-*.js\" --grep \"test-login-form\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hubertformin/electron-pos-printer.git"
},
"keywords": [
"electron",
"printer",
"thermal",
"pos"
],
"author": {
"name": "Hubert Formin",
"email": "hformin@gmail.com"
},
"contributors": [
"Sidnei Pacheco <sidnei.pacheco@seuguru.com.br>",
"Ulisses Constantini <ulisses@parseint.com.br>",
"Famous Ketoma <git+https://github.com/jfamousket>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Hubertformin/electron-pos-printer/issues"
},
"homepage": "https://github.com/Hubertformin/electron-pos-printer#readme",
"dependencies": {
"jsbarcode": "^3.11.5",
"qrcode": "^1.5.1"
},
"devDependencies": {
"@electron/remote": "^2.0.8",
"@types/node": "^18.7.15",
"@types/qrcode": "^1.5.0",
"bundle-declarations-webpack-plugin": "^3.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"electron": "^20.1.1",
"html-webpack-plugin": "^5.5.0",
"keyv": "^4.5.2",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^6.2.3",
"shx": "^0.3.4",
"spectron": "19.0.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^1.7.2"
}
}