wordreference
Version:
A Node solution for retrieving wordreference translations
51 lines (50 loc) • 1.36 kB
JSON
{
"name": "wordreference",
"version": "1.1.1",
"description": "A Node solution for retrieving wordreference translations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"test:coverage": "jest --config jestconfig.json --coverage",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/howardah/wordreference.git"
},
"keywords": [
"wordreference",
"translation",
"dictionary"
],
"author": "Adam Thomas Howard",
"license": "ISC",
"bugs": {
"url": "https://github.com/howardah/wordreference/issues"
},
"homepage": "https://github.com/howardah/wordreference#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12"
}
}