-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 848 Bytes
/
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
{
"name": "@churroc/create-discord-bot",
"version": "1.0.0",
"description": "A CLI to bootstrap new discord bots",
"main": "cli.js",
"bin": {
"@your_npm_username/create-project": "bin/create-discord-bot",
"create-project": "bin/create-discord-bot"
},
"scripts": {
"start": "node cli.js",
"startDev": "nodemon cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChurroC/Discord-Bot-Template.git"
},
"keywords": [
"cli",
"create-project"
],
"author": "ChurroC",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChurroC/Discord-Bot-Template/issues"
},
"homepage": "https://github.com/ChurroC/Discord-Bot-Template#readme",
"devDependencies": {
"nodemon": "^2.0.20"
}
}