-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 833 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 833 Bytes
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
{
"name": "node-canvas-api",
"version": "2.0.0",
"description": "Canvas LMS API for Node",
"files": [
"src"
],
"main": "src/index.js",
"author": "Justin Lee",
"license": "MIT",
"type": "module",
"dependencies": {
"bottleneck": "^2.19.4",
"dotenv": "^4.0.0",
"node-fetch": "^3.3.2",
"parse-link-header": "^2.0.0",
"ramda": "^0.27.2"
},
"keywords": [
"canvas",
"lms",
"client",
"api",
"instructure"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubc/node-canvas-api.git"
},
"bugs": {
"url": "https://github.com/ubc/node-canvas-api/issues"
},
"homepage": "https://github.com/ubc/node-canvas-api#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0"
}
}