-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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
{
"name": "@platformatic/pg-hooks",
"version": "0.4.3",
"description": "PostgreSQL based webhooks system",
"homepage": "https://github.com/platformatic/pg-hooks",
"author": "Platformatic Inc. <oss@platformatic.dev> (https://platformatic.dev)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/pg-hooks.git"
},
"keywords": [
"postgresql",
"hooks"
],
"bugs": {
"url": "https://github.com/platformatic/pg-hooks/issues"
},
"private": false,
"files": [
"config.d.ts",
"index.js",
"index.d.ts",
"lib",
"migrations",
"schema.json",
"LICENSE",
"README.md"
],
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"build": "node -e 'import {schema} from \"./lib/schema.js\"; console.log(JSON.stringify(schema, null, 2))' > schema.json && json2ts > config.d.ts < schema.json",
"lint": "eslint --cache",
"test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=300000 test/*.test.js",
"ci": "pnpm run lint && pnpm run test",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"@platformatic/db": "^3.0.2",
"@platformatic/foundation": "^3.0.2",
"@platformatic/service": "^3.0.0",
"cron-parser": "^5.0.3",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@databases/pg": "^5.5.0",
"c8": "^10.1.3",
"cleaner-spec-reporter": "^0.5.0",
"eslint": "^9.21.0",
"fastify": "^5.3.2",
"json-schema-to-typescript": "^15.0.4",
"neostandard": "^0.13.0",
"undici": "^7.15.0"
},
"engines": {
"node": ">= 22.18.0"
}
}