-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
{
"name": "@autome/zoom-cli",
"version": "1.1.7",
"description": "A cli for interacting with Zoom.us",
"main": "bin/zoom",
"bin": {
"@autome/zoom-cli": "bin/zoom",
"zoom": "bin/zoom"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Autome-Tooling/zoom-cli.git"
},
"scripts": {
"patch": "npm version patch; git push; npm publish;",
"minor": "npm version minor; git push; npm publish;",
"major": "npm version major; git push; npm publish;",
"test": "nyc ./node_modules/.bin/mocha src/test/**/*.js --require @babel/register"
},
"keywords": [
"cli",
"zoom",
"automation",
"zoom.us",
"videoconferencing",
"tool"
],
"author": "Seth Fuller",
"license": "MIT",
"dependencies": {
"arg": "^4.1.3",
"axios": "^0.20.0",
"chalk": "^4.1.0",
"esm": "^3.2.25",
"execa": "^4.0.3",
"fs": "0.0.1-security",
"open": "^7.2.0",
"ora": "^5.0.0",
"path": "^0.12.7",
"util": "^0.12.3"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^9.2.0",
"prettier": "^2.1.2"
}
}