forked from datalanche/node-pg-format
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 956 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
{
"name": "@airthium/pg-format",
"version": "2.0.95",
"description": "Node.js implementation of PostgreSQL's format() to safely create dynamic SQL queries.",
"homepage": "https://github.com/Airthium/pg-format",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/Airthium/pg-format.git"
},
"license": "MIT",
"author": {
"name": "Airthium",
"url": "https://github.com/orgs/Airthium/people"
},
"main": "dist/index.js",
"scripts": {
"depcheck": "depcheck . --ignores '@types/*,@swc/jest'",
"prettier": "prettier -l '**/*.{js,ts,json,md}'",
"test": "jest --silent --coverage",
"build": "swc lib/ --out-dir dist --strip-leading-paths"
},
"devDependencies": {
"@swc/cli": "0.7.7",
"@swc/core": "1.12.1",
"@swc/jest": "0.2.38",
"@types/jest": "29.5.14",
"depcheck": "1.4.7",
"jest": "30.0.0",
"prettier": "3.5.3"
},
"packageManager": "yarn@4.9.2"
}