UNPKG

job-hoarder

Version:

Job board aggregator to pull in standardized job postings from company job pages

69 lines (68 loc) 1.75 kB
{ "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" } }