-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "puppeteer-infinite-scroller",
"version": "1.0.2",
"description": "Provides a simple and efficient solution for scraping data loaded through infinite scrolling on web pages using Puppeteer.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "node build/index.js",
"example": "node examples/index.js",
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DulanHewage/puppeteer-infinite-scroller.git"
},
"license": "MIT",
"author": "Dulan Hewage <dulanhewage2@gmail.com>",
"bugs": {
"url": "https://github.com/DulanHewage/puppeteer-infinite-scroller/issues"
},
"homepage": "https://github.com/DulanHewage/puppeteer-infinite-scroller#readme",
"keywords": [
"headless-chrome",
"puppeteer",
"scraping",
"scroll",
"auto-scroller",
"infinite-scroll"
],
"devDependencies": {
"@types/jest": "^29.5.7",
"esbuild": "^0.19.2",
"jest": "^29.6.2",
"npm-dts": "^1.3.12",
"puppeteer": "^21.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"lib/*"
]
}