-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "pg-access-apply",
"version": "0.1.5",
"description": "Idemponent postgres database and role management",
"license": "MIT",
"author": {
"name": "Andrew Plummer",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/plumdog/pg-access-apply"
},
"keywords": [
"postgres"
],
"scripts": {
"test": "jest --runInBand",
"tsc": "tsc",
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && cp package.json README.md ./build/",
"version": "auto-changelog --hide-credit -p && git add CHANGELOG.md",
"lint": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --fix",
"lint-check": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --max-warnings 0",
"docs": "typedoc index.ts --includeVersion"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.31",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"auto-changelog": "^2.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.0",
"pg": "^8.7.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
}
}