-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "smart-botto",
"version": "1.0.0",
"description": "Smart Chatbot based onhttps://express-is-fun.herokuapp.com",
"main": "dist/index.js",
"files": [
"dist",
"tests"
],
"scripts": {
"test": "node tests",
"build": "tsc -p",
"prepare": "npm run build",
"lint": "eslint \"src/**/*.ts\"",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synthesized-Infinity/smart-botto.git"
},
"keywords": [
"chatbot",
"discord",
"bot",
"chat",
"whatsapp",
"eif"
],
"author": "Sythesized Inifinity",
"license": "ISC",
"bugs": {
"url": "https://github.com/Synthesized-Infinity/smart-botto/issues"
},
"homepage": "https://github.com/Synthesized-Infinity/smart-botto#readme",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"eslint": "^7.24.0",
"prettier": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0"
}
}