-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 2.48 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
{
"type": "module",
"name": "@plato2/impressionist",
"version": "0.6.2-beta",
"description": "Impressionist is a JavaScript library that allows you to scrape data in less time.",
"main": "src/index.js",
"scripts": {
"publish": "npm publish --access public",
"docs": "npm run docs-src && npm run docs-plugins && npm run docs-lib-collector",
"docs-src": "jsdoc2md src/* > docs/api/api.md",
"docs-plugins": "jsdoc2md src/**/**/* >> docs/api/api.md",
"docs-lib-collector": "jsdoc2md lib/** >> docs/api/api.md && jsdoc2md lib/**/** >> docs/api/api.md && jsdoc2md lib/**/**/** >> docs/api/api.md && jsdoc2md lib/**/**/**/** >> docs/api/api.md",
"coverage": "c8 --100 npm test",
"test": "mocha --timeout 60000 --recursive ./test/",
"test-Process": "mocha --timeout 60000 ./test/src/process.js",
"test-browserControllers": "mocha --timeout 60000 --recursive ./test/src/browserControllers/**",
"test-Collector": "mocha --timeout 60000 ./test/collector/collector.js",
"test-Collection": "mocha --timeout 60000 --recursive ./test/collector/collection/**",
"test-contextAccessors": "mocha --timeout 60000 ./test/collector/contextAccessors/**",
"test-factory": "mocha --timeout 60000 ./test/collector/factory/**",
"test-option": "mocha --timeout 60000 --recursive ./test/collector/option/**",
"test-option-strategies": "mocha --timeout 60000 --recursive ./test/collector/option/strategy/**",
"test-Query": "mocha --timeout 60000 ./test/collector/query/query.js",
"test-querySelectors": "mocha --timeout 60000 ./test/collector/query/selectors/**",
"test-queryInterpreter": "mocha --timeout 60000 --recursive ./test/collector/query/interpreter/**",
"test-scraper": "mocha --timeout 60000 ./test/scraper/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Plato-solutions/Impressionist.git"
},
"keywords": [
"scrape",
"scraper",
"browser"
],
"author": "Rhonal Velasco",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Plato-solutions/Impressionist/issues"
},
"homepage": "https://github.com/Plato-solutions/Impressionist#readme",
"dependencies": {
"@sentry/node": "^6.13.3",
"pino": "^7.0.0-rc.9",
"pino-pretty": "^7.2.0",
"puppeteer": "^19.9.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-page-proxy": "^1.2.8"
},
"devDependencies": {
"c8": "^7.10.0",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.2"
}
}