This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "instagram-download",
"description": "Download all the Instagram JSON data and media for a user.",
"version": "2.2.6",
"author": "Luke Karrys <[email protected]>",
"bin": {
"instagram-download": "./lib/cli.js"
},
"bugs": {
"url": "https://github.com/lukekarrys/instagram-download/issues"
},
"dependencies": {
"async": "^2.5.0",
"debug": "^3.0.0",
"express": "^4.15.4",
"instagram-node": "^0.5.8",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"open": "0.0.5",
"recursive-readdir": "^2.2.1",
"request": "^2.81.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"git-validate": "^2.2.2",
"standard": "^10.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"files": [
"lib/*"
],
"homepage": "https://github.com/lukekarrys/instagram-download#readme",
"keywords": [
"backup",
"download",
"intstagram"
],
"license": "MIT",
"main": "lib/index.js",
"pre-commit": [
"lint",
"validate",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lukekarrys/instagram-download.git"
},
"scripts": {
"cli": "DEBUG=instagram-download:* babel-node src/cli.js",
"compile": "rm -rf lib/ && babel src --out-dir lib",
"example": "DEBUG=instagram-download:* babel-node src/cli.js --user 1640745920 --dir _cache --refresh --full",
"lint": "standard",
"prepare": "npm run compile",
"test": "babel-tape-runner test/*.js | tap-spec",
"validate": "npm ls"
},
"standard": {
"ignore": [
"**/lib/**"
],
"parser": "babel-eslint"
}
}