UNPKG

@openactive/harvesting-utils

Version:
56 lines (55 loc) 1.6 kB
{ "name": "@openactive/harvesting-utils", "version": "0.2.2", "description": "Utils library for harvesting RPDE feeds", "main": "index.js", "types": "built-types/index.d.ts", "scripts": { "test": "npm run lint && tsc", "lint": "eslint \"*.js\" \"examples/**/*.js\" \"src/**/*.js\"", "gen-types-clean": "rimraf --glob \"built-types/*\"", "gen-types-copy-d-ts-files": "copyfiles --up 1 \"src/**/*.d.ts\" built-types/src", "gen-types": "npm run gen-types-clean && tsc && npm run gen-types-copy-d-ts-files", "add-gen-types": "git add built-types", "gen-and-git-add-everything": "npm run gen-types && npm run add-gen-types" }, "repository": { "type": "git", "url": "git+https://github.com/openactive/harvesting-utils.git" }, "keywords": [ "RPDE", "harvesting", "crawler" ], "author": "Civ Sivakumaran", "license": "MIT", "bugs": { "url": "https://github.com/openactive/harvesting-utils/issues" }, "homepage": "https://github.com/openactive/harvesting-utils#readme", "devDependencies": { "@types/node": "^20.11.19", "copyfiles": "^2.4.1", "eslint": "^8.56.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.29.1", "husky": "^4.3.8", "rimraf": "^5.0.5", "typescript": "^5.3.3" }, "dependencies": { "@openactive/rpde-validator": "^3.0.2", "axios": "^1.6.7", "lodash": "^4.17.21", "lossless-json": "^4.0.1" }, "husky": { "hooks": { "pre-commit": "npm run gen-and-git-add-everything" } }, "engines": { "node": ">=18.17.1" } }