-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
47 lines (47 loc) · 962 Bytes
/
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
{
"name": "indeed-scraper",
"version": "3.1.4",
"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",
"request": "^2.79.0"
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"np": "^7.5.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"
}
}