forked from devoxa/integresql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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": "@devoxa/integresql-client",
"description": "IntegreSQL client for managing isolated PostgreSQL databases in integration tests",
"version": "1.0.0",
"main": "dist/src/index.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/integresql-client"
},
"scripts": {
"test": "jest tests/",
"integration-test": "sh integration-test.sh",
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "eslint --ignore-path='.gitignore' '{src,tests}/**/*.ts'",
"build": "rm -rf dist/ && tsc",
"preversion": "yarn build"
},
"eslintConfig": {
"extends": "@devoxa"
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"fast-glob": "3.2.12",
"node-fetch": "2.6.11"
},
"devDependencies": {
"@devoxa/eslint-config": "3.0.10",
"@devoxa/prettier-config": "2.0.1",
"@prisma/client": "4.14.1",
"@types/jest": "29.5.1",
"@types/node": "18.16.12",
"@types/node-fetch": "2.6.4",
"eslint": "8.40.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"prisma": "4.14.1",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"publishConfig": {
"access": "public"
}
}