-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 954 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 954 Bytes
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
{
"name": "systemic-pg",
"version": "3.0.0",
"description": "A systemic postgres component",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"eslint": "eslint . --ext .js --config .eslintrc.json --ignore-path .eslintignore --cache",
"eslint:fix": "eslint . --ext .js --fix",
"lint": "npm run eslint"
},
"keywords": [
"systemic",
"postgres"
],
"author": "GuideSmiths Ltd",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"lodash.get": "^4.4.2",
"pg": "^8.4.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"eslint": "^8.1.0",
"husky": "^7.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/systemic-pg.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/systemic-pg/issues"
},
"homepage": "https://github.com/guidesmiths/systemic-pg#readme"
}