UNPKG

soccer-go

Version:

Soccer CLI for stats and results.

81 lines (80 loc) 2.04 kB
{ "name": "soccer-go", "version": "1.2.4", "description": "Soccer CLI for stats and results.", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/acifani/soccer-go" }, "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,__tests__}/**/*.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": { "cfonts": "^3.2.0", "cli-table3": "^0.5.1", "commander": "^3.0.2", "dayjs": "^1.11.7", "enquirer": "^2.3.6", "nanospinner": "^1.1.0", "phin": "^3.7.0", "picocolors": "^1.0.0", "update-check": "^1.5.4" }, "devDependencies": { "@babel/core": "^7.21.8", "@tsconfig/node10": "^1.0.9", "@types/jest": "^29.5.1", "@types/node": "^10.17.60", "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^5.59.2", "eslint": "^8.40.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.5.0", "prettier": "^2.8.8", "rimraf": "^3.0.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, "engines": { "node": ">=10.12.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" } }