-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "comment-watch-bot",
"version": "1.0.0",
"description": "a bot that watches an API method and sends the changes to the t.me ",
"main": "lib/index",
"types": "lib/index",
"scripts": {
"test": "mocha ./test --recursive",
"watch": "tsc -w",
"build": "tsc",
"lint": "tslint src/**/*.ts --type-check --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/watch_bot.git"
},
"author": "TIXFeniks",
"license": "ISC",
"bugs": {
"url": "https://github.com/qiwi/watch_bot/issues"
},
"homepage": "https://github.com/qiwi/watch_bot#readme",
"dependencies": {
"config": "^1.26.1",
"cron": "^1.3.0",
"log4js": "^4.0.2",
"node-telegram-bot-api": "^0.30.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"url-join": "^2.0.2"
},
"devDependencies": {
"@types/cron": "^1.2.1",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.10",
"@types/node-telegram-bot-api": "^0.27.0",
"@types/request-promise": "^4.1.36",
"@types/request-promise-native": "^1.0.6",
"@types/sinon": "^2.3.2",
"@types/url-join": "^0.8.2",
"chai": "^4.0.2",
"mocha": "^5.2.0",
"mock-require": "^2.0.2",
"sinon": "^2.3.7",
"tslint": "^5.5.0",
"typescript": "^2.6.1"
}
}