-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.69 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-sequelize",
"version": "2.4.4",
"description": "Ltijs Sequelize Database Plugin",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=10.19.0"
},
"scripts": {
"test": "mocha",
"build": "standard 'src/**/*.js' --fix && babel src -d dist",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cvmcosta/ltijs-sequelize.git"
},
"keywords": [
"ltijs",
"lti",
"postgresql",
"postgres",
"mysql",
"sequelize",
"provider",
"ims"
],
"author": "cvmcosta",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cvmcosta/ltijs-sequelize/issues"
},
"homepage": "https://github.com/Cvmcosta/ltijs-sequelize#readme",
"dependencies": {
"@babel/runtime": "^7.14.5",
"debug": "^4.3.1",
"mariadb": "^2.5.3",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.2",
"tedious": "^11.0.9",
"umzug": "^3.0.0-beta.15"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^7.28.0",
"ltijs": "^5.8.1",
"mocha": "^9.0.0",
"nock": "^13.1.0",
"sequelize-cli": "^6.2.0",
"standard": "^16.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/",
"dist/"
],
"env": [
"mocha"
]
}
}