forked from thealexbaron/node-printer
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.68 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
{
"name": "@thesusheer/electron-printer",
"description": "Node API (N-API) supported electron.s || node.js printer bindings",
"homepage": "https://github.com/Susheer/electron-printer",
"version": "2.0.4",
"main": "./lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
"node-addon-api": "^8.1.0"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"release": "node-pre-gyp-github publish --release --commitish main",
"electron-rebuild": "node-gyp rebuild --target_platform=win32 --target_arch=x64 --runtime=electron --target=32.2.0 --dist-url=https://electronjs.org/headers",
"test": "node --test test/"
},
"author": {
"name": "Ion Lupascu",
"url": "http://program-support.co.uk/",
"email": "ionlupascu@gmail.com"
},
"contributors": [
"Sudheer Gupta <sudheergupta0508@gmail.com>",
"Thiago Lugli <thiagoelg@gmail.com>",
"Eko Eryanto <ekoeryanto@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/Susheer/electron-printer.git"
},
"binary": {
"module_name": "electron-printer",
"module_path": "./lib/",
"host": "https://github.com/Susheer/electron-printer/releases/download/",
"remote_path": "v{version}",
"tag_path": "https://github.com/Susheer/electron-printer/releases/tag/v{version}"
},
"licenses": [
{
"type": "BSD"
}
],
"devDependencies": {
"@mapbox/node-pre-gyp": "^2.0.0",
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-node-gyp": "^5.0.0",
"grunt-shell": "^4.0.0",
"node-pre-gyp-github": "github:Susheer/node-pre-gyp-github"
}
}