-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "slappey",
"version": "4.0.0",
"description": "A simple Discord Bot Project Scaffolder",
"main": "./lib/index.js",
"bin": {
"slappey": "./lib/index.js"
},
"scripts": {
"build": "tsc",
"dev": "nodemon ./src/index.ts",
"start": "node ./lib/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": "git+https://github.com/stuyy/slappey.git",
"keywords": [
"discord",
"discord.js",
"discord project",
"discord bot",
"command line",
"cli tool",
"cli"
],
"author": "Arizona Arizona",
"license": "ISC",
"bugs": {
"url": "https://github.com/stuyy/slappey/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn build",
"pre-push": "yarn test"
}
},
"homepage": "https://github.com/stuyy/slappey#readme",
"dependencies": {
"chalk": "^4.0.0",
"discord.js": "^12.5.1",
"log-symbols": "^4.0.0",
"prompts": "^2.3.2"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^26.0.19",
"@types/log-symbols": "^3.0.0",
"@types/node": "^14.14.14",
"@types/prompts": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^8.9.1",
"typescript": "^4.1.3"
}
}