-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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": "basic-instagram-user-details",
"version": "1.0.2",
"description": "A simple API to scrap basic details of an Instagram user",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/basic-instagram-user-details.git"
},
"author": "Rishi Giri <rushforlinux@gmail.com> (rishigiri.ml)",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"fetch",
"scrap",
"details",
"instagram",
"data",
"external url",
"linkshimmed",
"post",
"followers",
"following",
"verified",
"profile"
],
"dependencies": {
"got": "^6.3.0",
"unicodechar-string": "^1.0.0"
},
"devDependencies": {
"ava": "^0.15.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true
},
"bugs": {
"url": "https://github.com/CodeDotJS/basic-instagram-user-details/issues"
},
"homepage": "https://github.com/CodeDotJS/basic-instagram-user-details#readme",
"main": "index.js"
}