-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.63 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
56
57
58
59
60
61
62
63
{
"name": "himawari-bg",
"description": "Set the latest image from Himawari 8 as your desktop background.",
"version": "2.0.2",
"author": "Nate Goldman <ungoldman@gmail.com>",
"bin": {
"himawari-bg": "./cli.js"
},
"bugs": {
"url": "https://github.com/ungoldman/himawari-bg/issues"
},
"dependencies": {
"@ungoldman/himawari": "^2.0.0",
"cliclopts": "^1.1.1",
"minimist": "^1.2.0",
"mkdirp": "^3.0.0",
"progress": "^2.0.3",
"untildify": "^4.0.0",
"wallpaper": "^5.0.1"
},
"devDependencies": {
"gh-pages": "^6.0.0",
"npm-run-all": "^4.1.5",
"serve": "^14.1.2",
"sitedown": "^5.1.3",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap-arc": "^1.0.1",
"tape": "^5.5.3"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/ungoldman/himawari-bg",
"keywords": [
"background",
"desktop",
"earth",
"himawari",
"himawari-8",
"satellite",
"wallpaper"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ungoldman/himawari-bg.git"
},
"scripts": {
"gh-pages": "npm run site && gh-pages -d site",
"pretest": "standard | snazzy",
"release": "git fetch --all --prune && git push && git push --tags && npx gh-release && npm publish",
"serve:site": "serve site",
"serve:watch": "npm run site:html -- -w",
"site": "run-s site:*",
"site:clean": "rm -rf site",
"site:html": "sitedown -b site -l docs/layout.html",
"site:img": "cp screenshot.jpg site/",
"start": "npm-run-all site --parallel serve:*",
"test": "tape test.js | tap-arc"
}
}