generated from hi-imcodeman/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.72 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": "flipkart-scraper",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "https://github.com/hi-imcodeman/flipkart-scraper.git",
"author": "Asraf Ali <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"docs": "typedoc",
"gpr-setup": "node ./scripts/setup-gpr.js",
"lint": "eslint . --ext .ts",
"package-upgrade": "yarn upgrade-interactive"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn coverage"
}
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/numeral": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"typedoc": "^0.20.24",
"typescript": "^3.9.3"
},
"dependencies": {
"axios": "^0.21.1",
"deepdash": "^5.0.3",
"fastq": "^1.8.0",
"numeral": "^2.0.6"
},
"keywords": [
"flipkart",
"flipkart scraper",
"scraper",
"crawler",
"ecommerce",
"products scraper",
"shopping",
"indian online shopping",
"flipkart affiliate api",
"flipkart affiliate api client",
"affiliate api",
"affiliate client",
"flipkart affiliate client",
"flipkart client",
"affiliate",
"client",
"nodejs",
"typescript",
"flipkart api"
],
"bugs": {
"url": "https://github.com/hi-imcodeman/flipkart-scraper/issues"
},
"homepage": "https://hi-imcodeman.github.io/flipkart-scraper"
}