-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 874 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
{
"name": "pgcalendar",
"version": "1.0.1",
"description": "Infinite Calendar Extension for PostgreSQL - Test Suite",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:db:start": "./tests/start-db.sh",
"test:db:stop": "docker stop pgcalendar-test || true",
"test:db:clean": "docker stop pgcalendar-test && docker rm pgcalendar-test || true",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"keywords": [
"postgresql",
"extension",
"calendar",
"testing"
],
"author": "h4kbas",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"pg": "^8.11.3"
}
}