-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "zoomapi",
"version": "2.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "NodeJS library for working with the Zoom API.",
"repository": {
"type": "git",
"url": "https://github.com/sedenardi/zoomapi.git"
},
"author": "Sanders DeNardi <sedenardi@gmail.com> (http://www.sandersdenardi.com/)",
"homepage": "https://github.com/sedenardi/zoomapi",
"license": "MIT",
"files": [
"lib/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"eslint": "eslint --ext .ts src/**",
"prepare": "npm run eslint && npm run clean && npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}