-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 907 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"dependencies": {
"discord.js": "^14.4.0",
"dotenv": "^16.0.2",
"glob": "^8.0.3",
"path": "^0.12.7"
},
"name": "terobot",
"version": "2.0.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublish": "npm run build",
"test": "jest --config jestconfig.json",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teroaz/Terobot.git"
},
"keywords": [
"discord.js",
"wrapper",
"template",
"bot"
],
"author": "teroaz",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
}
}