-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
51
52
53
{
"name": "@buildit/job-listings",
"version": "2.0.0",
"description": "Small JS library for fetching Buildit job listings data from SmartRecruiter's API",
"main": "lib/index.js",
"files": [
"lib/",
"src/*.js"
],
"scripts": {
"clean": "del lib/*",
"build": "babel src -d lib",
"watch": "npm run build -- --watch",
"lint": "eslint src/",
"test": "jest --coverage",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildit/fetch-job-listings.git"
},
"keywords": [
"smartrecruiters",
"job",
"list",
"opening",
"careers",
"recruitment",
"browser",
"node"
],
"author": "Buildit @ Wipro Digital (https://buildit.wiprodigital.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildit/fetch-job-listings/issues"
},
"homepage": "https://github.com/buildit/fetch-job-listings#readme",
"dependencies": {
"country-list": "^2.1.1",
"cross-fetch": "^3.0.4",
"lodash.kebabcase": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0"
}
}