forked from Hubertformin/electron-pos-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "modified-pos-printer",
"version": "1.2.4",
"description": "Electron thermal 58mm printer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha",
"start": "npm run build && npm run demo",
"demo": "electron ./demo/",
"pack": "webpack --config ./webpack.config.js",
"build": "tsc",
"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/Gruce/electron-pos-printer.git"
},
"keywords": [
"electron",
"printer",
"thermal",
"pos"
],
"author": "Hubertformin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gruce/electron-pos-printer//issues"
},
"homepage": "https://github.com/Gruce/electron-pos-printer/#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^7.3.2",
"mocha": "^6.2.3",
"spectron": "^9.0.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}