-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.67 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
51
52
53
54
55
56
57
{
"name": "lti-server",
"version": "6.0.1",
"description": "Handles data requests in the LTI format and returns Ilios data.",
"main": "app.js",
"repository": "https://github.com/ilios/lti-server",
"author": "The Ilios Team",
"license": "MIT",
"scripts": {
"unit": "jest",
"lint": "eslint . --cache",
"format": "prettier . --cache --write",
"compile": "tsc",
"test": "pnpm run compile && pnpm run unit",
"cli": "tsx bin/cli.ts",
"lookup": "tsx bin/lookup.ts",
"jwk:generate": "tsx bin/generate-jwk.ts",
"jwk:sign": "tsx bin/sign-jwk.ts",
"jwk:validate": "tsx bin/validate-jwk.ts",
"prepare": "node .husky/install.mjs"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.10",
"commander": "^14.0.2",
"esbuild": "^0.28.0",
"jose": "^6.2.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.1009.0",
"@aws-sdk/client-s3": "^3.1057.0",
"@aws-sdk/util-stream-node": "^3.374.0",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.3.0",
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^25.5.0",
"@typescript-eslint/parser": "^8.57.0",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"luxon": "^3.7.2",
"prettier": "^3.7.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"packageManager": "pnpm@10.33.3"
}