forked from sedenardi/zoomapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@schoolhouse/zoomapi",
"version": "1.0.1",
"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/schoolhouse-world/zoomapi.git"
},
"author": "Sanders DeNardi <sedenardi@gmail.com> (http://www.sandersdenardi.com/)",
"contributors": [
"Anees I <i@steelbrain.me>"
],
"homepage": "https://github.com/schoolhouse-world/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": ">=14"
},
"dependencies": {
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"ts-node": "^10.9.1",
"prettier": "^2.6.2",
"typescript": "^5.0.4"
}
}