This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "ltijs-postgresql",
"version": "1.2.0",
"description": "Plugin for ltijs to use postgresql instead of mongodb",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=8.6.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-postgres.git"
},
"keywords": [
"ltijs",
"lti",
"postgresql",
"postgres",
"provider",
"ims"
],
"author": "cvmcosta",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cvmcosta/ltijs-postgres/issues"
},
"homepage": "https://github.com/Cvmcosta/ltijs-postgres#readme",
"dependencies": {
"@babel/runtime": "^7.5.0",
"pg": "^7.12.1",
"sequelize": "^5.16.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"sequelize-cli": "^5.5.0",
"standard": "^14.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/",
"dist/"
],
"env": [
"mocha"
]
}
}