forked from ungoldman/hi8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "hi8",
"description": "See Earth from Himawari-8 on your desktop every 10 minutes.",
"version": "0.1.2",
"author": "Nate Goldman <[email protected]>",
"bin": {
"hi8": "./bin.js"
},
"bugs": {
"url": "https://github.com/ungoldman/hi8/issues"
},
"dependencies": {
"daemon": "^1.1.0",
"electron": "^1.4.2",
"himawari-bg": "^1.0.0"
},
"devDependencies": {
"gh-pages": "^0.11.0",
"live-server": "^1.1.0",
"npm-run-all": "^3.1.0",
"sitedown": "^3.1.0",
"standard": "^8.3.0"
},
"homepage": "https://github.com/ungoldman/hi8",
"keywords": [
"app",
"application",
"background",
"desktop",
"earth",
"himawari",
"himawari-8",
"image",
"satellite",
"wallpaper"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ungoldman/hi8.git"
},
"scripts": {
"gh-pages": "npm run site && gh-pages -d site",
"preview": "npm-run-all site --parallel serve:*",
"serve:site": "live-server site",
"serve:watch": "npm run site:html -- -w",
"site": "run-s site:*",
"site:clean": "rm -rf site",
"site:html": "sitedown -b site -l assets/layout.html",
"site:img": "cp -R assets/ site/assets/",
"start": "electron .",
"test": "standard"
}
}