-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "telegram-songsearchbot",
"version": "1.5.0",
"description": "Searches for music in popular streaming platforms (and youtube) to allow better UX of music sharing in telegram chats",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "npm run lint && npm-run-all -p -r ts-watch lint-watch start-watch",
"start-watch": "nodemon dist/index.js --watch dist",
"lint": "tslint -p ./ --force --format stylish",
"ts-watch": "tsc --watch --pretty",
"lint-watch": "onchange './src/**/*.ts' -d 300 -- npm run lint",
"build": "NODE_ENV=production && tsc",
"test": "jest",
"test-watch": "jest --watchAll",
"pack": "npm run build && zip -r app-`date -u +\"%Y%m%d%H%M\"`.zip package.json dist/* config/custom-environment-variables.json"
},
"dependencies": {
"@types/cheerio": "^0.22.9",
"@types/config": "0.0.34",
"@types/node": "^8.10.34",
"@types/qs": "^6.5.1",
"axios": "^0.18.0",
"base-64": "^0.1.0",
"cheerio": "^1.0.0-rc.2",
"config": "^2.0.1",
"qs": "^6.5.2",
"telegraf": "^3.24.0",
"tslib": "^1.9.3",
"typescript": "^3.1.1",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.3",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"onchange": "^5.0.2",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0"
},
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krakabek/songSearchBot.git"
},
"keywords": [
"telegram",
"bot",
"song",
"search"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Krakabek/songSearchBot/issues"
},
"homepage": "https://github.com/Krakabek/songSearchBot#readme"
}