-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"test": "xo --quiet"
},
"keywords": [
"pokemon",
"pokedex",
"nintendo",
"game",
"pokemons",
"pikachu",
"cli"
],
"dependencies": {
"catch-pokemon": "^0.0.1",
"chalk": "^3.0.0",
"define-probability": "^0.0.1",
"get-pokeball": "^0.0.3",
"inquirer": "^7.0.0",
"meow": "^6.0.0",
"node-fetch": "^2.0.0",
"ora": "^4.0.0",
"pokemon-escape": "^0.0.1",
"pokemon-player-escape": "^0.0.1",
"prompt-email": "^0.0.2",
"querystring": "^0.2.0",
"shout-error": "^0.0.2",
"shout-message": "^0.0.3",
"shout-success": "^0.0.3",
"unique-random-array": "^2.0.0",
"update-notifier": "^4.0.0"
},
"devDependencies": {
"ava": "2.4.0",
"eslint-config-prettier": "6.9.0",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"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"
]
}
}