forked from casamagalhaes/node-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@grupoboticario/node-printer",
"description": "Node.js printer bindings",
"version": "0.0.0-dev",
"homepage": "https://github.com/grupoboticario/node-printer",
"author": {
"name": "Ion Lupascu",
"url": "http://program-support.co.uk/",
"email": "[email protected]"
},
"contributors": [
"Thiago Lugli <[email protected]>",
"Eko Eryanto <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/grupoboticario/node-printer.git"
},
"devDependencies": {
"node-abi": "^3.47.0",
"nodeunit": "^0.11.3",
"patch-package": "^8.0.0",
"prebuild": "^12.0.0"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"apply-patches": "patch-package",
"prebuild-all": "prebuild --all --force --strip --verbose --openssl_fips=X",
"prebuild": "prebuild",
"rebuild": "node-gyp rebuild",
"test": "nodeunit test"
},
"binary": {
"module_name": "node_printer",
"module_path": "./lib/",
"host": "https://github.com/grupoboticario/node-printer/releases/download/",
"remote_path": "{version}"
},
"licenses": [
{
"type": "BSD"
}
],
"main": "./lib/printer",
"dependencies": {
"nan": "^2.18.0",
"prebuild-install": "^7.1.1"
},
"types": "types/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}