-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "caccl-api-forwarder",
"version": "2.2.16",
"description": "Client-side express module that forwards Canvas requests from the client to Canvas.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/caccl-api-forwarder.git"
},
"keywords": [
"CACCL",
"Canvas",
"API",
"LTI",
"request",
"forward"
],
"author": "Gabe Abrams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/caccl-api-forwarder/issues"
},
"homepage": "https://github.com/harvard-edtech/caccl-api-forwarder#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"typescript": "^4.5.5"
},
"dependencies": {
"caccl-authorizer": "^2.2.16",
"caccl-error": "^2.2.16",
"caccl-lti": "^2.2.16",
"caccl-send-request": "^2.2.16",
"express": "^4.17.3"
}
}