-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "zaccl",
"version": "4.1.4",
"description": "The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json && rm -rf ./docBuilder/template;cp -r ./node_modules/docdash ./docBuilder/template; node ./docBuilder/updateBuilder.js;rm -rf ./docs;./node_modules/.bin/jsdoc -c ./docBuilder/jsdocConfig.json",
"dev:sandbox": "npm run build && npx ts-node sandbox.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/zaccl.git"
},
"keywords": [
"Zoom",
"API"
],
"author": "Gabe Abrams <gabeabrams@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/zaccl/issues"
},
"homepage": "https://github.com/harvard-edtech/zaccl#readme",
"dependencies": {
"async-mutex": "^0.4.0",
"axios": "^0.21.1",
"jsonwebtoken": "^9.0.1",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"docdash": "^1.2.0",
"doctrine": "^3.0.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdoc": "^4.0.2",
"taffydb": "^2.7.3",
"typescript": "^4.8.3"
}
}