-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
73 lines (73 loc) · 1.36 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "instagram-web-api",
"version": "2.2.2",
"description": "Instagram Private Web API client written in JS",
"license": "MIT",
"main": "lib/index.js",
"repository": "jlobos/instagram-web-api",
"author": "Jesus Lobos <jlobitu@gmail.com> (https://jlobos.com)",
"scripts": {
"lint": "xo",
"test": "xo && ava"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"lib"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"keywords": [
"❤️",
"🤳",
"📷",
"instagram",
"private",
"api",
"web",
"upload",
"like",
"comment",
"save",
"follow",
"search",
"ig",
"photo",
"selfie"
],
"xo": {
"extends": "prettier",
"rules": {
"camelcase": 0,
"no-await-in-loop": 0,
"no-unmodified-loop-condition": 0
}
},
"lint-staged": {
"*.js": [
"xo --quiet",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"dependencies": {
"is-url": "^1.2.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"tough-cookie": "^3.0.1",
"useragent-from-seed": "^1.0.1"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint-config-prettier": "^2.10.0",
"husky": "^3.0.9",
"lint-staged": "^10.2.11",
"prettier": "^1.19.1",
"xo": "^0.20.3"
}
}