-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "unsplash-wallpaper",
"version": "7.0.0",
"description": "Set an image from Unsplash as your wallpaper.",
"main": "index.js",
"dependencies": {
"conf": "^6.1.0",
"log-update": "^3.3.0",
"minimist": "^1.2.0",
"pify": "^4.0.1",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"wallpaper": "^4.4.1"
},
"repository": {
"type": "git",
"url": "github:cuth/unsplash-wallpaper"
},
"keywords": [
"wallpaper",
"unsplash",
"desktop background",
"desktop image",
"background image"
],
"author": "cuth",
"license": "MIT",
"preferGlobal": true,
"bin": {
"unsplash-wallpaper": "cli.js"
},
"scripts": {
"test": "ava",
"precommit": "lint-staged",
"prettier:all": "prettier --single-quote --write \"{{lib,test}/*.js,*.js}\""
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
]
},
"devDependencies": {
"ava": "^2.4.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"path-exists": "^4.0.0",
"prettier": "^1.18.2"
}
}