-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "html-data-scraper",
"version": "1.1.1",
"description": "An efficient wrapper around puppeteer for data scraping web pages. ",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"author": "Ravidhu Dissanayake",
"license": "MIT",
"repository": "ravidhu/html-data-scraper",
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"scraping",
"webscraper",
"webscraping",
"parser",
"html",
"cheerio",
"xray",
"x-ray",
"dom",
"javascript"
],
"scripts": {
"test": "nyc mocha 'tests/**/*.ts'",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepare": "npm run build"
},
"dependencies": {
"@types/puppeteer": "^5.4.4",
"controlled-promise-list": "^1.0.1",
"puppeteer": "^10.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}