-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "dank-times-bot",
"version": "2.1.0",
"description": "This Telegram bot keeps track of 'dank' times such as 13:37 and 04:20, and awards points to users who call them out.",
"main": "built/main.js",
"scripts": {
"clean": "rimraf ./built",
"prestart": "npm run clean && tsc",
"start": "node ./built/main.js",
"pretest": "npm run clean && tsc",
"test": "mocha ./built/**/*.spec.js",
"lint": "npx eslint . --fix"
},
"author": "Agadar",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/Agadar/DankTimesBot.git"
},
"dependencies": {
"cron": "^1.8.2",
"moment-timezone": "^0.5.33",
"node-cleanup": "^2.1.2",
"node-emoji": "^1.11.0",
"node-telegram-bot-api": "0.56.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.5",
"@types/cron": "^1.7.3",
"@types/mocha": "^9.0.0",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^14.17.6",
"@types/node-cleanup": "^2.1.2",
"@types/node-emoji": "^1.8.1",
"@types/node-telegram-bot-api": "0.56.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "8.10.0",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"ts-mockito": "^2.6.1",
"typescript": "^4.4.2"
}
}