-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "caccl-lti",
"version": "2.2.18",
"description": "LTI launch validator for IMS-LTI standard launches.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabeabrams/lti-launch-validator.git"
},
"keywords": [
"IMS",
"LTI",
"Canvas",
"Launch",
"Validate",
"Validator",
"CACCL"
],
"author": "Gabe Abrams <gabeabrams@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabeabrams/lti-launch-validator/issues"
},
"homepage": "https://github.com/gabeabrams/lti-launch-validator#readme",
"dependencies": {
"caccl-api": "^2.2.18",
"caccl-memory-store": "^2.2.18",
"express": "^4.17.2",
"express-session": "^1.17.2",
"fast-clone": "^1.5.13",
"locks": "^0.2.2",
"oauth-signature": "^1.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/is-number": "^7.0.2",
"@types/locks": "^0.2.1",
"@types/node-schedule": "^1.3.2",
"@types/url-parse": "^1.4.8",
"typescript": "^4.5.5"
}
}