forked from Cvmcosta/ltijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.68 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
{
"name": "ltijs",
"version": "5.9.0",
"description": "Easily turn your web application into a LTI 1.3 Learning Tool.",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=10.19.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.15.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.2",
"express": "^4.17.1",
"fast-url-parser": "^1.1.3",
"got": "^11.8.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.3",
"parse-link-header": "^2.0.0",
"rasha": "^1.2.5"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/register": "^7.15.3",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.0.0",
"mocha": "^9.2.0",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"standard": "^16.0.4"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/",
"dist/"
],
"env": [
"mocha"
]
}
}