-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 828 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 828 Bytes
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
{
"name": "wikipics-api",
"version": "1.0.2",
"description": "A simple API to obtain Wikipedia Picture of the Day!",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/wikipics-api.git"
},
"keywords": [
"wikipedia",
"image",
"day",
"wiki",
"scrap",
"extract",
"data",
"link",
"fetch"
],
"dependencies": {
"got": "*",
"cheerio": "*"
},
"author": "Rishi Giri <rushforlinux@gmail.com> (http://rishigiri.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeDotJS/wikipics-api/issues"
},
"homepage": "https://github.com/CodeDotJS/wikipics-api#readme",
"devDependencies": {
"ava": "*",
"xo": "*"
}
}