-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@woovi/node-printer",
"description": "Node.js printer bindings",
"version": "1.0.1",
"author": {
"name": "Ion Lupascu",
"url": "http://program-support.co.uk/",
"email": "ionlupascu@gmail.com"
},
"binary": {
"module_name": "node_printer",
"module_path": "./lib/binding",
"host": "https://github.com/entria/node-printer/releases/download/",
"remote_path": "v{version}"
},
"contributors": [
"Thiago Lugli <thiagoelg@gmail.com>",
"Eko Eryanto <ekoeryanto@gmail.com>",
"Francimar Alves <mazinsw@gmail.com>"
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"nan": "^2.15.0",
"prebuild-install": "^7.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"eslint": "^8.48.0",
"eslint-config-egg": "^13.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"node-abi": "^3.8.0",
"node-gyp": "^10.0.0",
"nodeunit": "*",
"patch-package": "^8.0.0",
"prebuild": "^12.1.0",
"prebuild-ci": "^4.0.0",
"prebuildify": "^5.0.1"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">= 4.0.0"
},
"exports": {
".": "./lib/printer.js",
"./build": "./build.js"
},
"keywords": [
"native",
"node",
"printer"
],
"license": "MIT",
"main": "./lib/printer",
"overrides": {
"node-gyp": "^9.4.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/entria/node-printer.git"
},
"resolutions": {
"node-gyp": "^9.4.0"
},
"scripts": {
"apply-patches": "patch-package",
"install": "prebuild || node-gyp rebuild",
"prebuild": "prebuild",
"rebuild": "node-gyp rebuild",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "nodeunit test"
},
"types": "types/index.d.ts"
}