-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
80 lines (80 loc) · 1.94 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
77
78
79
80
{
"name": "ltijs",
"version": "5.9.5",
"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": "MONGOMS_VERSION=7.0.3 NODE_TLS_REJECT_UNAUTHORIZED=0 nyc mocha",
"build:js": "babel src -d dist",
"build:html": "node copy-html-files.js",
"build": "npm run build:js && npm run build:html",
"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.24.4",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.19.2",
"fast-url-parser": "^1.1.3",
"got": "^11.8.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.10",
"parse-link-header": "^2.0.0",
"rasha": "^1.2.5",
"sprightly": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.36.0",
"mocha": "^10.4.0",
"mongodb-memory-server": "^9.1.8",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"standard": "^17.1.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"node_modules/",
"dist/"
],
"env": [
"mocha"
]
}
}