-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
58 lines (58 loc) · 1.39 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
51
52
53
54
55
56
57
58
{
"name": "toogoodtogo-watcher",
"version": "4.0.4",
"description": "Node.js cli tool for monitoring your favorite TooGoodToGo businesses.",
"type": "module",
"exports": "./index.js",
"keywords": [
"TooGoodToGo",
"notifications",
"desktop",
"telegram"
],
"author": "Mark Lagendijk <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/marklagendijk/node-toogoodtogo-watcher.git"
},
"bugs": {
"url": "https://github.com/marklagendijk/node-toogoodtogo-watcher/issues"
},
"homepage": "https://github.com/marklagendijk/node-toogoodtogo-watcher#readme",
"preferGlobal": true,
"bin": {
"toogoodtogo-watcher": "index.js"
},
"dependencies": {
"conf": "^11.0.1",
"editor": "^1.0.0",
"got": "^12.5.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-notifier": "^10.0.1",
"rxjs": "^7.8.0",
"telegraf": "^4.11.2",
"tough-cookie": "^4.1.2",
"yargs": "^17.7.1"
},
"scripts": {
"lint": "prettier --write . && eslint --cache --fix ."
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write",
"*.js": "eslint --cache --fix"
}
}