-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "node-lti-1.3-library",
"version": "0.1.0",
"description": "LTI 1.3 Tool Library with Example Tool built in NodeJS",
"main": "index.js",
"scripts": {
"start": "nodemon server/index.js",
"test": "mocha tests/*.spec.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Godmartinz/Node-LTI-1.3-library.git"
},
"author": "Argenis De Los Santos, Gian Delprado, Godfrey Martinez, Sherry Freitas",
"license": "MIT",
"bugs": {
"url": "https://github.com/Godmartinz/Node-LTI-1.3-library/issues"
},
"homepage": "https://github.com/Godmartinz/Node-LTI-1.3-library#readme",
"dependencies": {
"axios": "^0.19.0",
"base64url": "^3.0.1",
"connect-mongo": "^3.0.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.1",
"mongoose": "^5.6.6",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"qs": "^6.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0"
}
}