-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "electron-wallpaper",
"version": "0.0.3",
"description": "Node module that allows you to attach a window as wallpaper in Windows.",
"main": "lib/electron-wallpaper.js",
"homepage": "https://github.com/robinwassen/electron-wallpaper",
"gypfile": true,
"repository": {
"type": "git",
"url": "git://github.com/robinwassen/electron-wallpaper.git"
},
"keywords": [
"window",
"dashboard",
"electron",
"windows"
],
"scripts": {
"lint": "eslint lib example && cpplint --linelength=120 --recursive src",
"example": "electron ./example",
"readme": "jsdoc2md --template docs/README.hbs lib/electron-wallpaper.js > README.md",
"configure": "node-gyp configure",
"build": "node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"rebuild-electron": "electron-rebuild -f",
"install": "prebuild-install || node-gyp rebuild",
"prebuild-release": "prebuild --all --strip"
},
"author": "Robin Andersson <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=4"
},
"devDependencies": {
"electron": "^2.0.8",
"electron-rebuild": "^1.8.2",
"eslint": "^4.19.1",
"jsdoc-to-markdown": "^4.0.1",
"prebuild": "^7.6.2"
},
"dependencies": {
"bindings": "^1.3.0",
"prebuild-install": "^5.0.0"
}
}