-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 919 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
{
"name": "pageguardian",
"version": "1.0.0",
"description": "Monitor specific website URLs and receive Telegram notifications whenever changes occur",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js",
"test": "",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niklasfrick/pageguardian.git"
},
"author": "Niklas Frick",
"license": "MIT",
"bugs": {
"url": "https://github.com/niklasfrick/pageguardian/issues"
},
"homepage": "https://github.com/niklasfrick/pageguardian#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"commitlint-config-gitmoji": "^2.3.1",
"husky": "^8.0.0"
},
"dependencies": {
"axios": "^1.5.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"node-telegram-bot-api": "^0.63.0"
}
}