-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 974 Bytes
/
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
{
"name": "wallpaper-everyday",
"version": "3.0.0",
"description": "Manage the desktop wallpaper",
"scripts": {
"test": "ava",
"prepublishOnly": "npm run format",
"format": "prettier --write ./**/*.js"
},
"bin": {
"wallpaper": "bin/wallpaper.js"
},
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "[email protected]:normalHamal/wallpaper-everyday"
},
"main": "bin/wallpaper.js",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"colors": "^1.3.3",
"commander": "^2.20.0",
"fs-extra": "^7.0.1",
"got": "^9.6.0",
"is-url-superb": "^2.0.0",
"log-update": "^3.2.0",
"ora": "^3.4.0",
"tempfile": "^2.0.0",
"wallpaper": "^4.4.0"
},
"keywords": [
"cli",
"wallpaper",
"bing",
"random",
"unsplash",
"netbian"
],
"license": "MIT",
"devDependencies": {
"ava": "^1.4.1",
"prettier": "^1.17.0"
}
}