-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
26 lines (26 loc) · 1.13 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
{
"name": "jswebscraper",
"version": "1.0.0",
"description": "A web scraper made with JavaScript",
"main": "scraper.js",
"scripts": {
"start": "npm run basico",
"basico": "echo \"\n\n######################################## \n Demostración de un scraping simple: \n########################################\" && node ./basico/index.js",
"ciclo": "echo \"\n\n######################################## \n Demostración de un scraping con ciclos: \n########################################\" && node ./ciclo/index.js",
"screenshot": "echo \"\n\n######################################## \n Demostración de un scraping tomando screensots: \n########################################\" && node ./screenshot/index.js",
"test": "NODE_ENV=test npm run lint && jest --config ./jest.config.js --no-cache --forceExit --detectOpenHandles",
"lint": "eslint **/*.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"puppeteer": "^1.6.0"
},
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-infield": "^1.3.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.4.1",
"jest-puppeteer": "^3.2.1"
}
}