forked from Cvmcosta/ltijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ltijs",
"version": "5.9.3",
"description": "Easily turn your web application into a LTI 1.3 Learning Tool.",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"test": "nyc mocha",
"build": "babel src -d dist",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cvmcosta/ltijs.git"
},
"keywords": [
"lti",
"lms",
"lti 1.3",
"imslti",
"1.3",
"advantage"
],
"author": "cvmcosta",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cvmcosta/ltijs/issues"
},
"homepage": "https://cvmcosta.github.io/ltijs",
"dependencies": {
"@babel/runtime": "^7.21.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.2",
"fast-url-parser": "^1.1.3",
"got": "^11.8.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"parse-link-header": "^2.0.0",
"rasha": "^1.2.5"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.12.0",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"node_modules/",
"dist/"
],
"env": [
"mocha"
]
}
}