-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 KB
/
package.json
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
{
"name": "@0xait/zoom-meeting-api",
"version": "1.1.0",
"description": "API implementation for zoom meetings",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"lib/**/*.js\" \"docs/**/*.html\" \"docs/**/*.css\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/the-ai-team/zoom-meeting-api.git"
},
"keywords": [
"zoom",
"meeting",
"api",
"zoom meeting api"
],
"author": "Nadun Yashmika",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-ai-team/zoom-meeting-api/issues"
},
"homepage": "",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"jsdoc": "^3.6.5",
"prettier": "^2.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"dependencies": {
"axios": "^0.19.2",
"jsonwebtoken": "^8.5.1",
"save": "^2.4.0"
}
}