-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "caccl-canvas-partial-simulator",
"version": "2.2.18",
"description": "Partially simulates a Canvas instance, handling OAuth token exchanges and forwarding API requests",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"start": "./lib/index.js",
"canvas-simulator-start": "./lib/index.js"
},
"scripts": {
"build": "rimraf lib/ && tsc --project ./tsconfig.json && copyfiles -u 1 src/**/*.ejs lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/canvas-partial-simulator.git"
},
"keywords": [
"Canvas",
"Simulator",
"OAuth",
"Token"
],
"author": "Gabe Abrams <gabeabrams@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/canvas-partial-simulator/issues"
},
"homepage": "https://github.com/harvard-edtech/canvas-partial-simulator#readme",
"dependencies": {
"caccl-api": "^2.2.18",
"caccl-api-forwarder": "^2.2.18",
"caccl-dev-server": "^2.2.18",
"caccl-error": "^2.2.18",
"caccl-lti": "^2.2.18",
"caccl-memory-store": "^2.2.18",
"caccl-send-request": "^2.2.18",
"clear": "^0.1.0",
"ejs": "^3.1.9",
"express": "^4.18.2"
},
"devDependencies": {
"@types/async": "^3.2.18",
"@types/clear": "^0.1.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^18.15.11",
"copyfiles": "^2.4.1",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
}
}