forked from dilame/instagram-private-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "instagram-private-api",
"description": "Forked from dilame/instagram-private-api with updates/fixes",
"version": "1.45.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/dilame/instagram-private-api/issues",
"email": "dilame.nickolson@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dilame/instagram-private-api.git"
},
"homepage": "https://github.com/dilame/instagram-private-api",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"prepare": "yarn build",
"test": "mocha --inline-diffs --timeout 1000000 tests/run.js",
"generate-interface": "ts-node ./tools/response-to-interface.ts",
"generate-docs": "typedoc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"@types/chance": "^1.0.2",
"@types/request-promise": "^4.1.43",
"bluebird": "^3.7.1",
"chance": "^1.0.18",
"class-transformer": "^0.3.1",
"debug": "^4.1.1",
"got": "^11.8.2",
"http2-wrapper": "^2.1.11",
"image-size": "^0.7.3",
"json-bigint": "^1.0.0",
"lodash": "^4.17.20",
"luxon": "^1.12.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rxjs": "^6.5.2",
"snakecase-keys": "^3.1.0",
"tough-cookie": "^2.5.0",
"ts-custom-error": "^2.2.2",
"ts-xor": "^1.0.6",
"url-regex-safe": "^3.0.0",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"re2": "^1.17.2"
},
"peerDependenciesMeta": {
"re2": {
"optional": true
}
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/lodash": "^4.14.123",
"@types/luxon": "^1.12.0",
"@types/node": "^18.0.3",
"@types/tough-cookie": "^2.3.5",
"dotenv": "^16.0.1",
"husky": "^1.3.1",
"inquirer": "^1.1.2",
"json-ts": "^1.6.4",
"prettier": "^1.19.1",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.3.5"
}
}