-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.66 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
{
"name": "marv-pg-driver",
"version": "5.0.0",
"description": "A postgres marv driver implementation",
"main": "index.js",
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"docker": "docker run -d --name postgres -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres:14.4-alpine",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "zUnit",
"prepare": "husky install"
},
"engines": {
"node": ">=10"
},
"author": "GuideSmiths Ltd",
"license": "ISC",
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"marv": "^5.0.0",
"marv-compliance-tests": "^4.0.0",
"nyc": "^15.1.0",
"pg": "^8.0.0",
"prettier": "2.7.1",
"zunit": "^3.2.1"
},
"dependencies": {
"async": "^3.2.4",
"debug": "^4.3.4",
"lodash": "^4.17.21"
},
"peerDependencies": {
"pg": "^7.0.0 || ^8.0.0"
},
"keywords": [
"marv",
"database",
"db",
"migration",
"migrate",
"postgres",
"postgresql"
],
"directories": {
"test": "test"
},
"lint-staged": {
"**/*.js": "npm run lint:fix",
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/marv-pg-driver.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/marv-pg-driver/issues"
},
"homepage": "https://github.com/guidesmiths/marv-pg-driver#readme"
}