UNPKG

what-to-play

Version:

Score aggregator for lists of games

59 lines (58 loc) 1.44 kB
{ "name": "what-to-play", "version": "1.0.0", "description": "Score aggregator for lists of games", "main": "build/api.js", "type": "commonjs", "types": "build", "scripts": { "build": "tsc -i", "clean": "rm -rf build", "main": "npm run build && node -r source-map-support/register build/main.js", "test": "testyts", "prepublishOnly": "npm run clean && npm run build && npm test" }, "files": [ "/bin", "/build/**/*.js", "/build/**/*.d.ts", "!/build/**/*.test.js", "!/build/**/*.test.d.ts", "/LICENSE", "/README.md" ], "bin": { "what-to-play": "./bin/what-to-play" }, "repository": { "type": "git", "url": "git+https://github.com/Deskbot/What-to-Play.git" }, "keywords": [ "game", "review" ], "author": "Thomas Richards", "license": "./LICENSE", "bugs": { "url": "https://github.com/Deskbot/What-to-Play/issues" }, "homepage": "https://github.com/Deskbot/What-to-Play#readme", "dependencies": { "cheerio": "^1.0.0-rc.5", "fastest-levenshtein": "^1.0.12", "howlongtobeat": "^1.8.0", "js-lcs": "^1.0.1", "minimist": "^1.2.5", "node-fetch": "^2.6.1" }, "devDependencies": { "@types/cheerio": "^0.22.23", "@types/minimist": "^1.2.1", "@types/node": "^14.14.16", "@types/node-fetch": "^2.5.7", "source-map-support": "^0.5.19", "testyts": "^1.1.0", "typescript": "^5.3.3" } }