-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
49
{
"name": "run-pg-sql",
"version": "1.2.0",
"description": "Run a SQL file using pg-promise (npx friendly)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "yarn dlx rimraf ./build",
"test": "jest",
"lint": "eslint src",
"build": "tsc -p tsconfig.build.json",
"prepare": "husky install"
},
"bin": "./build/cli",
"engines": {
"node": ">18.0.0"
},
"author": "GasBuddy Developers <developers@gasbuddy.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gas-buddy/run-pg-sql.git"
},
"keywords": [
"typescript",
"gasbuddy"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn eslint --cache --fix"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.16.15",
"@types/pg": "^8.10.1",
"eslint": "^8.41.0",
"eslint-config-gasbuddy": "^7.2.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"packageManager": "yarn@3.2.4",
"dependencies": {
"minimist": "^1.2.8",
"pg": "^8.11.0"
}
}