-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "awesome-pokemon",
"version": "1.0.2",
"description": "Get 🎉 awesome Pokémon",
"main": "./lib/index.js",
"bin": {
"pokemon": "./lib/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "sudo npm i -g && pokemon",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuongw/pokemon-cli.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cuongw/pokemon-cli/issues"
},
"homepage": "https://github.com/cuongw/pokemon-cli#readme",
"dependencies": {
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^2.19.0",
"figlet": "^1.2.1",
"gradient-string": "^1.2.0"
},
"devDependencies": {
"@types/node": "^11.11.1",
"nodemon": "^1.18.10",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}