forked from davesag/sequelize-pg-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.57 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.57 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sequelize-pg-utilities",
"version": "2.0.1",
"description": "An opinionated set of database utilities that manage creating and connecting to a Postgres database",
"author": "Dave Sag (https://github.com/davesag)",
"type": "commonjs",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/davesag"
},
"main": "src/index.js",
"engines": {
"node": ">= 8.10.0"
},
"files": [
"CONTRIBUTING.md",
"src"
],
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"eslint-check": "eslint --print-config src/index.js | eslint-config-prettier-check",
"lint": "eslint .",
"prettier": "prettier --write '**/*.{js,json,md}'",
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test mocha ./test/unit/ --require ./test/testHelper.js --recursive",
"test:unit:cov": "NODE_ENV=test nyc mocha ./test/unit/ --require ./test/testHelper.js --recursive",
"snyk-protect": "snyk protect"
},
"keywords": [
"postgres",
"postgresql",
"database",
"configuration",
"config"
],
"repository": {
"type": "git",
"url": "https://github.com/davesag/sequelize-pg-utilities.git"
},
"bugs": {
"url": "https://github.com/davesag/sequelize-pg-utilities/issues"
},
"homepage": "https://github.com/davesag/sequelize-pg-utilities#readme",
"devDependencies": {
"ajv": "^8.1.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"pg": "^8.4.1",
"prettier": "^2.1.2",
"proxyquire": "^2.1.3",
"sinon": "^11.1.0",
"sinon-chai": "^3.5.0",
"snyk": "^1.419.1"
},
"peerDependencies": {
"pg": ">= 6.4.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"arrowParens": "avoid",
"trailingComma": "none",
"printWidth": 100
},
"lint-staged": {
"**/*.{js,json,md}": [
"prettier --write"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/**/*.js"
],
"exclude": [
"src/configure.js"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"cache": true
},
"snyk": true
}