forked from rynobax/indeed-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 KB
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
{
"name": "indeed-scraper",
"version": "3.1.1",
"description": "A Node.js package for getting job listings from Indeed.com",
"main": "index.js",
"scripts": {
"publish": "np --no-tests"
},
"dependencies": {
"cheerio": "^0.22.0",
"dateformat": "^3.0.3",
"request": "^2.79.0",
"timeago-reverse": "^1.0.10"
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"np": "^6.2.0",
"prettier": "^1.19.1"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rynobax/indeed-scraper.git"
},
"keywords": [
"Indeed.com",
"Indeed",
"Scraper",
"Job",
"Search"
],
"author": "Ryan Baxley",
"license": "MIT",
"bugs": {
"url": "https://github.com/rynobax/indeed-scraper/issues"
},
"homepage": "https://github.com/rynobax/indeed-scraper#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}