forked from Susheer/electron-printer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (54 loc) · 1.48 KB
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
{
"name": "@addble/node-printer",
"description": "Node API (N-API) supported electron.s || node.js printer bindings",
"homepage": "https://github.com/addble/node-printer",
"version": "3.0.0-RC1",
"main": "./lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
"node-addon-api": "^8.2.1",
"@mapbox/node-pre-gyp": "^2.0.0"
},
"devDependencies": {
"node-pre-gyp-github": "^2.0.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"rebuild": "node-gyp rebuild",
"prebuild": "node-pre-gyp build package",
"release": "node-pre-gyp-github publish --release",
"test": "node --test test/"
},
"author": {
"name": "Addble",
"url": "https://github.com/addble"
},
"contributors": [
"Yaikhomba Ningthemcha <@yaikhomba>",
"Sudheer Gupta <sudheergupta0508@gmail.com>",
"Thiago Lugli <thiagoelg@gmail.com>",
"Eko Eryanto <ekoeryanto@gmail.com>",
"Ion Lupascu <ionlupascu@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/addble/node-printer.git"
},
"binary": {
"module_name": "node-printer",
"module_path": "./lib/binding/",
"host": "https://github.com/addble/node-printer/releases/download/",
"remote_path": "v{version}"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
},
{
"type":"BSD-3-Clause",
"url": "https://opensource.org/licenses/BSD-3-Clause"
}
]
}