generated from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pg-rls-util",
"version": "0.0.42",
"description": "A tool to generate postgres row-level-security policies.",
"keywords": [
"cli"
],
"homepage": "https://github.com/stlbucket/pg-rls-util",
"repository": {
"type": "git",
"url": "https://github.com/stlbucket/pg-rls-util"
},
"preferGlobal": true,
"engines": {
"node": ">= 12.13"
},
"bin": {
"pg-rls-util": "./pg-rls-util"
},
"devDependencies": {
"@types/jest": "~26.0.5",
"@types/mustache": "^4.0.1",
"@types/node": "~12.12",
"@types/pg": "^7.14.5",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "~3.7.0",
"@typescript-eslint/parser": "~3.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.18.0",
"jest": "~26.1.0",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.3",
"tsutils": "~3.17.0",
"typescript": "~3.9.7"
},
"files": [
"build",
"src/d.ts"
],
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"cmd": "npm run build && node -r dotenv/config pg-rls-util",
"test": "jest --coverage",
"gen-json-schemata": "npm run build && node -r dotenv/config build/src/gen-json-schemata",
"test:watch": "jest --watch"
},
"author": "Kevin Burkett",
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^8.2.0",
"mustache": "^4.0.1",
"pg": "^8.3.3",
"tslib": "~2.0.0",
"typescript-json-schema": "^0.43.0",
"yargs": "^16.0.3"
},
"volta": {
"node": "12.18.2",
"npm": "6.14.5"
}
}