forked from nasser85/job-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.73 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "job-scraper",
"version": "2.4.0",
"description": "An api that returns job prospect data scraped from indeed and monster",
"main": "./dist/index.js",
"module": "./src/index.js",
"scripts": {
"build": "babel src --out-dir dist && webpack && rm -f dist/job-scraper.js",
"prepublishOnly": "npm run build",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nasser85/job-scraper.git"
},
"keywords": [
"web",
"scraping",
"scraper",
"api",
"json",
"jobs",
"job",
"indeed",
"monster"
],
"dependencies": {
"babel-polyfill": "^6.26.0",
"jquery": "^3.3.1"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"postcss-loader": "^2.1.5",
"precss": "^3.1.2",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"ie >= 10"
],
"node": "current"
}
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"jobScraperCss": [
"css/job-scraper.min.css"
],
"author": "Nasser Abouelazm",
"license": "MIT",
"bugs": {
"url": "https://github.com/nasser85/job-scraper/issues"
},
"homepage": "https://github.com/nasser85/job-scraper#readme"
}