forked from marklagendijk/node-toogoodtogo-watcher
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.43 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
59
{
"name": "toogoodtogo-watcher",
"version": "4.1.0",
"description": "Node.js cli tool for monitoring your favorite TooGoodToGo businesses.",
"main": "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": "^10.0.3",
"editor": "^1.0.0",
"got": "^11.8.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"node-notifier": "^10.0.0",
"rxjs": "^7.4.0",
"telegraf": "^3.39.0",
"yargs": "^17.2.1"
},
"scripts": {
"start": "node index.js start",
"lint": "prettier --write . && eslint --cache --fix .",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write",
"*.js": "eslint --cache --fix"
}
}