-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 KB
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
{
"name": "instagrapi",
"version": "5.0.0",
"description": "Library to obtain information from an Instagram account in a friendly and intuitive way",
"keywords": [
"instagram",
"api",
"nodejs",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Edixon Piña",
"email": "edixonalbertto@gmail.com"
},
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf ./dist",
"test": "jest",
"lint-demo": "prettier --write demo/**/*.{js,css,html}",
"lint-lib": "prettier --write src/**/*.ts",
"dev": "nodemon --config",
"pre-publish": "yarn build && yarn test && yarn try-publish",
"try-publish": "npm publish --dry-run",
"build-ts": "tsc && tsc-alias",
"build": "yarn lint-lib && yarn clean && yarn build-ts",
"start": "node server",
"deploy": "gh-pages -o github -d ./demo",
"serve": "live-server --host=localhost --port=8080 ./demo"
},
"nodemonConfig": {
"ext": ".ts,.env",
"watch": [
"./",
"src/*"
],
"verbose": false,
"exec": "yarn build-ts && yarn start",
"ignore": [
"node_modules/",
"dist/",
"tests/"
]
},
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"@types/jest": "^26.0.17",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"gh-pages": "^3.1.0",
"jest": "^27.4.7",
"live-server": "^1.2.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"tsc-alias": "^1.5.0",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.5.4"
},
"homepage": "https://github.com/EdixonAlberto/instagrapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EdixonAlberto/instagrapi.git"
},
"bugs": {
"url": "https://github.com/EdixonAlberto/instagrapi/issues"
},
"engines": {
"node": ">=14.18.2",
"yarn": "~1.22.0"
}
}