forked from dmitriym09/calendar-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "@web-standards-ru/calendar-bot",
"version": "1.1.0",
"description": "Module for post events from web-standards-ru/calendar",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"microservice": "node microservice.mjs",
"lint": "eslint --color helpers/*.mjs test/*.mjs types/*.mjs *.mjs",
"prettier": "prettier helpers/*.mjs test/*.mjs types/*.mjs *.mjs --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-standards-ru/calendar-bot.git"
},
"author": "dmitriym09",
"license": "ISC",
"bugs": {
"url": "https://github.com/web-standards-ru/calendar-bot/issues"
},
"bin": {
"calendar-bot": "./send.js"
},
"homepage": "https://github.com/web-standards-ru/calendar-bot#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^27.0.0",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"uuidv4": "^6.1.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"socks-proxy-agent": "^4.0.2",
"sqlite": "^4.0.9",
"sqlite3": "^4.2.0",
"unzipper": "^0.10.11",
"yaml": "^1.9.2",
"yargs": "^13.3.2"
}
}