UNPKG

leagueoflegends

Version:
123 lines (122 loc) 3.09 kB
{ "name": "leagueoflegends", "version": "4.0.1", "description": "League of Legends CLI.", "license": "MIT", "author": "Luke Al-Saba", "homepage": "https://al-saba.com", "repository": { "type": "git", "url": "git+https://github.com/lukealsaba/leagueoflegends.git" }, "bugs": { "url": "https://github.com/lukealsaba/leagueoflegends/issues" }, "main": "lib/cli.js", "bin": { "leagueoflegends": "lib/cli.js" }, "dependencies": { "chalk": "^4.1.0", "commander": "^7.0.0", "node-fetch": "^2.6.1", "ora": "^5.3.0", "update-notifier": "^5.0.1", "wide-align": "^1.1.3" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-object-rest-spread": "^7.12.1", "@babel/plugin-transform-runtime": "^7.12.10", "@babel/preset-env": "^7.12.11", "@babel/register": "^7.12.10", "babel-eslint": "^10.1.0", "babel-jest": "^26.6.3", "babel-loader": "^8.2.2", "eslint": "^7.18.0", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^7.2.0", "eslint-plugin-babel": "^5.3.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-prettier": "^3.3.1", "eslint-plugin-react": "^7.22.0", "husky": "^4.3.8", "jest": "^26.6.3", "lint-staged": "^10.5.3", "path": "^0.12.7", "pkg": "^4.4.9", "prettier": "^2.2.1", "prettier-package-json": "^2.1.3", "rimraf": "^3.0.2", "terser-webpack-plugin": "^5.1.1", "webpack": "^5.18.0", "webpack-cli": "^4.4.0", "webpack-node-externals": "^2.5.2" }, "keywords": [ "league of legends", "lol", "riot games", "esports", "cli", "worlds", "lcs", "lec", "lck", "lpl" ], "engines": { "node": ">=10.0.0" }, "jest": { "collectCoverageFrom": [ "src/**/*.js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/__tests__/" ], "testPathIgnorePatterns": [ "node_modules/" ] }, "lint-staged": { "package.json": [ "prettier-package-json --write", "git add" ], "*.js": [ "eslint --fix", "git add" ] }, "pkg": { "scripts": [ "lib/*.js" ], "targets": [ "node10-macos", "node10-linux", "node10-win" ] }, "directories": { "lib": "lib" }, "scripts": { "build": "npm run clean && webpack --config webpack.config.js --mode=production", "clean": "rimraf lib packed", "dev": "webpack --config webpack.config.js -d -w", "lint": "eslint src", "lint:fix": "npm run lint -- --fix", "pack": "pkg . --out-path packed", "prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - lib/cli.js > temp && mv temp lib/cli.js", "test": "npm run lint:fix && npm run testonly:cov", "testonly": "NODE_ENV=test jest", "testonly:cov": "jest --coverage --runInBand --forceExit --no-cache", "testonly:watch": "jest --watch" } }