-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 761 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 761 Bytes
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
{
"name": "google-meet-cli",
"version": "1.1.0",
"description": "Open a Google Meet in the default browser",
"bin": {
"meet": "cli.js"
},
"scripts": {
"test": "jest"
},
"files": [
"cli.js",
"lib.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/michaelzoidl/google-meet-cli.git"
},
"keywords": [
"google meet",
"cli"
],
"author": "Michael Zoidl",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelzoidl/google-meet-cli/issues"
},
"homepage": "https://github.com/michaelzoidl/google-meet-cli#readme",
"dependencies": {
"@sindresorhus/slugify": "^1.1.0",
"meow": "^9.0.0",
"open": "^8.0.5"
},
"devDependencies": {
"jest": "^26.6.3"
}
}