-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "scrape-it-all",
"version": "1.0.0",
"description": "Modular web scraper for Node.JS",
"main": "index.js",
"scripts": {
"clean": "rm -rf packages/*/lib",
"lint": "eslint . --ext .js,.ts",
"prebuild": "npm run clean",
"build": "lerna run tsc",
"postbuild": "npm run lint",
"publish": "npm run build && lerna publish",
"lerna:clean": "lerna clean -y",
"lerna:bootstrap": "npm run lerna:clean && lerna link && lerna exec npm install"
},
"author": "Rafael Bertelli <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.17",
"@types/puppeteer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"chalk": "^3.0.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"execa": "^3.4.0",
"lerna": "^3.19.0",
"prettier": "^1.19.1",
"string-length": "^3.1.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"dependencies": {
"puppeteer": "^2.0.0"
},
"engines": {
"node": "^12.13.0",
"npm": "^6.12.0"
}
}