-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "modellr",
"version": "1.0.15",
"description": "Database connection manager for Sequelize.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:aichholzer/modellr.git"
},
"keywords": [
"database",
"connection",
"manager",
"Sequelize"
],
"author": {
"name": "Stefan Aichholzer",
"email": "play@analogbird.com",
"url": "https://github.com/aichholzer"
},
"engines": {
"node": ">=6.11.5"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aichholzer/modellr/issues"
},
"homepage": "https://github.com/aichholzer/modellr#readme",
"scripts": {
"eslint": "eslint --quiet .",
"eslint:fix": "eslint --quiet --fix .",
"test": "npm run eslint && istanbul cover _mocha -- -R spec",
"report": "codecov && cat ./coverage/lcov.info | coveralls",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"snyk": "^1.299.0"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.6.5",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"istanbul": "^0.4.5",
"mocha": "^7.1.0",
"prettier": "^1.19.1",
"sinon": "^9.0.1"
},
"snyk": true
}