UNPKG

etymo-js

Version:

NodeJS and browser util for fetching etymology results from https://www.etymonline.com

57 lines (56 loc) 1.59 kB
{ "name": "etymo-js", "version": "1.0.2", "description": "NodeJS and browser util for fetching etymology results from https://www.etymonline.com", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc", "lint": "eslint . --ext .ts", "test": "jest --config jestconfig.json --verbose", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "git add -A src", "postversion": "git push && git push --tags", "check-updates": "npx npm-check-updates", "check-updates:minor": "npx npm-check-updates --target minor", "check-updates:patch": "npx npm-check-updates --target patch" }, "repository": { "type": "git", "url": "https://github.com/clairefro/etymo-js" }, "files": [ "lib/**/*" ], "keywords": [ "node", "browser", "etymology", "words" ], "author": "Claire Froelich", "license": "MIT", "devDependencies": { "@types/cheerio": "^0.22.35", "@types/jest": "^29.4.0", "@types/node": "^18.19.17", "@typescript-eslint/eslint-plugin": "^5.51.0", "@typescript-eslint/parser": "^5.51.0", "ansi-regex": ">=6.0.1", "eslint": "^8.33.0", "eslint-config-prettier": "^8.6.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.1.1", "jest": "^29.4.1", "ts-jest": "^29.0.5", "typescript": "^4.9.5" }, "dependencies": { "axios": "^1.6.7", "cheerio": "^1.0.0-rc.12" } }