-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "instagram-profile-picture",
"version": "1.0.5",
"description": "Get url to the profile picture of any instagram user in different resolutions",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/instagram-profile-picture.git"
},
"author": "Rishi Giri <rushforlinux@gmail.com> (rishigiri.ml)",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"user.js"
],
"keywords": [
"fetch",
"scrap",
"instagram",
"profile",
"image",
"picture",
"resolutions",
"full image",
"medium size",
"small size",
"images"
],
"dependencies": {
"got": "^6.3.0"
},
"devDependencies": {
"ava": "^0.15.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true
},
"bugs": {
"url": "https://github.com/CodeDotJS/instagram-profile-picture/issues"
},
"homepage": "https://github.com/CodeDotJS/instagram-profile-picture#readme",
"main": "index.js"
}