UNPKG

overwatch-api-server

Version:
65 lines (64 loc) 1.62 kB
{ "name": "overwatch-api-server", "version": "0.12.0", "description": "An Unoffical Overwatch HTTP API", "main": "server/index.js", "engines": { "node": ">=8.17.0" }, "dependencies": { "async": "^2.6.1", "cheerio": "^0.22.0", "redis": "^3.0.2", "request": "^2.74.0", "request-promise": "^4.1.1", "srv-cli": "0.4.1", "svg-builder": "^1.0.0" }, "devDependencies": { "@ava/babel": "^1.0.1", "@babel/polyfill": "^7.10.4", "@babel/register": "^7.10.4", "ava": "^3.10.1", "nyc": "^15.1.0" }, "scripts": { "start": "node node_modules/srv-cli/build/srv server/index.js", "start-dev": "nodemon node_modules/srv-cli/build/srv server/index.js", "docs": "node node_modules/srv-cli/build/srv server/index.js --docs server/routes", "debug": "node --nolazy --debug-brk=5858 node_modules/srv-cli/build/srv server/index.js", "lint": "node node_modules/srv-cli/build/srv --lint", "test-api": "cd api && nyc ava -v", "test-server": "nyc ava -v", "test": "npm run test-server && npm run test-api" }, "repository": { "type": "git", "url": "git+https://github.com/alfg/overwatch-api.git" }, "keywords": [ "node", "overwatch", "api", "rest", "http", "srv", "express" ], "author": "Alf", "license": "MIT", "bugs": { "url": "https://github.com/alfg/overwatch-api/issues" }, "homepage": "https://github.com/alfg/overwatch-api", "ava": { "files": [ "test/**/*" ], "babel": true, "require": [ "@babel/register", "@babel/polyfill" ] } }