-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "serverless-postgres",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "docker-compose up --build -d && jest && docker-compose down",
"semantic-release": "semantic-release",
"semantic-release-check": "semantic-release --dry-run --no-ci"
},
"author": "",
"license": "MIT",
"dependencies": {
"pg": "^8.11.5"
},
"devDependencies": {
"@babel/helper-compilation-targets": "^7.23.6",
"@babel/helper-environment-visitor": "^7.22.20",
"@babel/helper-hoist-variables": "^7.22.5",
"aws-xray-sdk": "^3.6.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"pg-query-stream": "^4.5.5",
"prettier": "^1.19.1",
"semantic-release": "^19.0.5"
},
"prettier": {
"printWidth": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatteoGioioso/serverless-pg.git"
},
"bugs": {
"url": "https://github.com/MatteoGioioso/serverless-pg/issues"
},
"homepage": "https://github.com/MatteoGioioso/serverless-pg#readme",
"directories": {
"test": "tests"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}