-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 976 Bytes
/
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
{
"name": "@jliuhtonen/pg-literally",
"version": "0.2.1",
"description": "SQL template tags and fragments for PostgreSQL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/jliuhtonen/pg-literally",
"repository": {
"type": "git",
"url": "https://github.com/jliuhtonen/pg-literally.git"
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist && rm .tsbuildinfo",
"test": "node --require ts-node/register --test ./test/*.test.ts",
"start": "node --require ts-node/register ./test/testClient.ts",
"build": "tsc",
"distribute": "npm run clean && npx tsc && npm publish --access=public"
},
"keywords": [
"postgres",
"pg",
"template",
"literals",
"sql",
"fragment"
],
"author": "Janne Liuhtonen",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.1",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}