UNPKG

soccer-go

Version:

Soccer CLI for stats and results.

87 lines (86 loc) 2.45 kB
{ "name": "soccer-go", "version": "1.4.0", "description": "Soccer CLI for stats and results.", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/acifani/soccer-go.git" }, "author": { "name": "Alessandro Cifani", "email": "alessandro.cifani@gmail.com", "url": "https://github.com/acifani" }, "keywords": [ "soccer", "cli", "sports", "typescript" ], "files": [ "lib" ], "main": "lib/index.js", "typings": "lib/index.d.ts", "bin": { "soccer-go": "lib/src/index.js", "sgo": "lib/src/index.js" }, "scripts": { "clean": "rimraf lib && rimraf coverage", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint --ignore-path .gitignore --ext .ts,.js ./src", "prepublishOnly": "npm run format && npm run build", "prebuild": "npm run clean", "build": "tsc --pretty", "pretest": "npm run lint", "test": "jest", "coverage": "jest --coverage", "watch": "npm run build -- --watch", "watch:test": "jest --watch", "start": "ts-node --files src/index.ts" }, "dependencies": { "@commander-js/extra-typings": "^14.0.0", "@inquirer/prompts": "^8.1.0", "cfonts": "^3.3.1", "cli-table3": "^0.6.5", "nanospinner": "^1.2.2", "picocolors": "^1.1.1", "update-check": "^1.5.4" }, "devDependencies": { "@babel/core": "^7.28.5", "@tsconfig/node20": "^20.1.4", "@types/jest": "^30.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.0.0", "eslint-plugin-jest": "^28.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^30.2.0", "prettier": "^3.0.0", "rimraf": "^6.1.2", "ts-jest": "^29.4.6", "ts-node": "^10.9.2", "typescript": "^5.9.3" }, "engines": { "node": ">=20.0.0" }, "devEngines": { "packageManager": { "name": "npm", "version": "^11", "onFail": "warn" }, "runtime": { "name": "node", "version": "^24", "onFail": "warn" } } }