-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
52 lines (52 loc) · 2.72 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
{
"name": "electron-printer",
"description": "Node.js printer bindings - electron builds",
"version": "0.0.5",
"homepage": "https://github.com/marcopiraccini/electron-printer",
"author": {
"name": "Marco Piraccini",
"email": "[email protected]"
},
"contributors": [
"Name Lastname <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/marcopiraccini/electron-printer.git"
},
"engines": {
"electron": ">=0.36"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"release-linux-ia32": "node-pre-gyp rebuild --target_arch=ia32 --dist-url=https://atom.io/download/atom-shell --target_platform=linux --runtime=electron --target=0.36.7 && node-pre-gyp --target_arch=ia32 --target_platform=linux --runtime=electron --target=0.36.7 package && node-pre-gyp-github publish --release",
"release-linux": "node-pre-gyp rebuild --target_arch=x64 --dist-url=https://atom.io/download/atom-shell --runtime=electron --target=0.36.7 --target_platform=linux && node-pre-gyp package --target_arch=x64 --target_platform=linux --runtime=electron --target=0.36.7 && node-pre-gyp-github publish --release",
"release-win-ia32": "node-pre-gyp rebuild --target_arch=ia32 --target_platform=win32 --runtime=electron --target=0.36.7 && node-pre-gyp package --target_arch=ia32 --target_platform=win32 --runtime=electron --target=0.36.7 && node-pre-gyp-github publish --release",
"release-win": "node-pre-gyp rebuild --target_arch=x64 --target_platform=win32 --runtime=electron --target=0.36.7 && node-pre-gyp package --target_arch=x64 --target_platform=win32 --runtime=electron --target=0.36.7 && node-pre-gyp-github publish --release",
"release": "node-pre-gyp rebuild --runtime=electron --target=0.36.7 && node-pre-gyp package --runtime=electron --target=0.36.7 && node-pre-gyp-github publish --release",
"release-darwin": "HOME=~/.electron-gyp node-pre-gyp rebuild --target_platform=darwin --runtime=electron --target=0.36.7 --arch=x64 --dist-url=https://atom.io/download/atom-shell && node-pre-gyp package --target_platform=darwin --runtime=electron --target=0.36.7 && node-pre-gyp-github publish —release"
},
"binary": {
"module_name": "node_printer",
"module_path": "./build/{configuration}/electron-v0.36-{platform}-{arch}/",
"package_name": "electron-v0.36-{platform}-{arch}.tar.gz",
"host": "https://github.com/marcopiraccini/electron-printer/releases/download/0.0.5"
},
"dependencies": {
"nan": "^2.1.0",
"node-pre-gyp": "^0.6.13",
"node-pre-gyp-github": "^1.1.2"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"nodeunit": "*"
},
"licenses": [
{
"type": "MIT"
}
],
"main": "./index"
}