-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "job-hoarder",
"version": "2.2.5",
"description": "Job board aggregator to pull in standardized job postings from company job pages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" && (prettier --write \"src/**/*.js\" || true)",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Connor Giles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/connorgiles/job-hoarder.git"
},
"keywords": [
"job board",
"lever",
"greenhouse",
"indeed"
],
"dependencies": {
"@types/cheerio": "^0.22.18",
"@types/lodash.unescape": "^4.0.6",
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"lodash.unescape": "^4.0.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^26.0.3",
"coveralls": "^3.1.0",
"jest": "^26.1.0",
"nock": "^13.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
}
}