UNPKG

pokemon-game

Version:
69 lines (68 loc) 1.5 kB
{ "name": "pokemon-game", "version": "0.0.3", "description": "Pokemon game — Get 'em all", "main": "bin/pokemon", "repository": "https://github.com/bukinoshita/pokemon-game.git", "author": "Bu Kinoshita <bukinoshita@gmail.com>", "license": "MIT", "scripts": { "precommit": "lint-staged", "test": "xo --quiet" }, "keywords": [ "pokemon", "pokedex", "nintendo", "game", "pokemons", "pikachu", "cli" ], "dependencies": { "catch-pokemon": "^0.0.1", "chalk": "^2.0.1", "define-probability": "^0.0.1", "get-pokeball": "^0.0.1", "inquirer": "^3.1.1", "meow": "^3.7.0", "node-fetch": "^1.7.1", "ora": "^1.3.0", "pokemon-escape": "^0.0.1", "pokemon-player-escape": "^0.0.1", "prompt-email": "^0.0.1", "querystring": "^0.2.0", "shout-error": "^0.0.1", "shout-message": "^0.0.1", "shout-success": "^0.0.1", "unique-random-array": "^1.0.0", "update-notifier": "^2.2.0" }, "devDependencies": { "ava": "^0.20.0", "eslint-config-prettier": "^2.3.0", "husky": "^0.14.1", "lint-staged": "^4.0.0", "prettier": "^1.5.2", "xo": "^0.18.2" }, "bin": { "pokemon": "bin/pokemon.js" }, "engines": ">=7.6.0", "xo": { "extends": [ "prettier" ], "rules": { "no-await-in-loop": 0 } }, "lint-staged": { "*.js": [ "npm run test", "prettier --semi false --single-quote --write", "git add" ] } }