-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "scrape-emails",
"version": "1.0.2",
"description": "Scrape emails from whole rendered website with puppeteer",
"main": "src/cli.js",
"bin": {
"scrape-emails": "./src/cli.js"
},
"dependencies": {
"batch-jobs": "^1.0.2",
"puppeteer": "^1.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"scripts": {
"prettier": "prettier -l **/*.js **/*.json",
"prettier:write": "prettier --write **/*.js **/*.json",
"lint": "eslint **/*.js **/*.json",
"lint-staged": "lint-staged",
"precommit": "lint-staged"
},
"keywords": [
"scrape",
"email",
"concurrent"
],
"author": {
"name": "Philippe Schommers",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/filoozom/batch-jobs"
},
"license": "MIT",
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
}
}