forked from guidesmiths/marv-pg-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "marv-pg-driver",
"version": "4.0.0",
"description": "A postgres marv driver implementation",
"main": "index.js",
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary node test/suite.js",
"codeclimate": "(test -e .codeclimate && npm run coverage && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate",
"docker": "bash -c '(docker network inspect local 2>&1 > /dev/null || docker network create local) && docker run -d --name postgres -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres'",
"lint": "eslint .",
"test": "node test/suite.js"
},
"author": "GuideSmiths Ltd",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-imperative": "^3.0.0",
"eslint-plugin-imperative": "^3.0.0",
"hath": "^1.0.1",
"hath-assert": "^0.2.0",
"hath-report-spec": "^0.1.0",
"husky": "^3.0.3",
"marv": "^3.1.0",
"marv-compliance-tests": "^3.0.1",
"nyc": "^15.0.1",
"pg": "^8.0.0"
},
"dependencies": {
"async": "^3.1.0",
"debug": "^4.1.1",
"lodash": "^4.17.15"
},
"peerDependencies": {
"pg": "^7.0.0 || ^8.0.0"
},
"keywords": [
"marv",
"database",
"db",
"migration",
"migrate",
"postgres",
"postgresql"
],
"directories": {
"test": "test"
},
"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",
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run codeclimate"
}
}
}