nba-go
Version:
The finest NBA CLI.
134 lines (133 loc) • 3.44 kB
JSON
{
"name": "nba-go",
"description": "The finest NBA CLI.",
"license": "MIT",
"author": "xxhomey19",
"homepage": "https://github.com/xxhomey19/nba-go#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xxhomey19/nba-go.git"
},
"bugs": {
"url": "https://github.com/xxhomey19/nba-go/issues"
},
"version": "0.4.0",
"main": "lib/cli.js",
"bin": {
"nba-go": "lib/cli.js",
"ng": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js -p",
"clean": "rimraf lib packed",
"precommit": "lint-staged",
"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"
},
"dependencies": {
"async-to-gen": "^1.3.3",
"babel-register": "^6.26.0",
"blessed": "^0.1.81",
"cfonts": "^1.1.3",
"chalk": "^2.3.0",
"cli-table2": "^0.2.0",
"commander": "^2.11.0",
"date-fns": "^1.29.0",
"delay": "^2.0.0",
"didyoumean": "^1.2.1",
"inquirer": "^4.0.0",
"is-async-supported": "^1.2.0",
"log-update": "^2.2.0",
"moment-timezone": "^0.5.14",
"nba": "^4.0.0",
"nba-color": "^1.2.2",
"nba-stats-client": "^0.0.4",
"node-emoji": "^1.8.1",
"ora": "^1.3.0",
"p-map": "^1.2.0",
"path": "^0.12.7",
"ramda": "^0.25.0",
"stringz": "^0.2.3",
"uglifyjs-webpack-plugin": "^1.1.6",
"update-notifier": "^2.3.0",
"webpack": "^3.10.0",
"wide-align": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.3.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"pkg": "^4.3.0-beta.1",
"prettier": "^1.8.2",
"prettier-package-json": "^1.4.0",
"rimraf": "^2.6.2",
"webpack-node-externals": "^1.6.0"
},
"keywords": [
"NBA",
"cli"
],
"engines": {
"node": ">=6.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",
"node_modules/blessed/lib/**/*.js"
],
"assets": "lib/data/fonts/*",
"targets": [
"node8-macos",
"node8-linux",
"node8-win"
]
}
}