-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "suchtube",
"version": "0.7.0",
"description": "YouTube search as a service, with Slack and Discord integration and CLI",
"type": "module",
"bin": {
"suchtube": "bin/suchtube"
},
"main": "src/search.js",
"scripts": {
"start": "./bin/suchtube --server",
"dev": "nodemon --inspect ./bin/suchtube --server",
"test": "ava ./test/test_*.js --verbose",
"release:patch": "npm version patch && git push && git push --tags && npm publish",
"release:minor": "npm version minor && git push && git push --tags && npm publish",
"release:major": "npm version major && git push && git push --tags && npm publish"
},
"keywords": [
"youtube",
"videos",
"slack",
"slack-command",
"discord",
"discord-slash-command",
"search",
"api",
"service",
"cli"
],
"author": "Marc Anguera Insa @markets",
"repository": {
"type": "git",
"url": "git+https://github.com/markets/suchtube.git"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.2",
"open": "^10.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^6.4.1",
"nodemon": "^3.1.10",
"sinon": "^21.0.0"
}
}