-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 KB
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
{
"name": "@rawsql-ts/testkit-postgres",
"version": "0.15.7",
"description": "Postgres-specific fixture/rewriter logic that stays driver-agnostic.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"prepack": "node -e \"const fs=require('fs');const cp=require('child_process');const npm=process.platform==='win32'?'npm.cmd':'npm';if(!fs.existsSync('dist/index.js')){process.exit(cp.spawnSync(npm,['run','build'],{stdio:'inherit'}).status??1)}\"",
"build": "pnpm --filter rawsql-ts run build && pnpm --filter @rawsql-ts/sql-contract run build && pnpm --filter @rawsql-ts/testkit-core run build && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests --ext .ts",
"release": "npm run lint && npm run test && npm run build && node -e \"require('fs').mkdirSync('../../tmp', { recursive: true })\" && pnpm pack --out ../../tmp/rawsql-ts-testkit-postgres.tgz && pnpm publish --access public"
},
"keywords": [
"postgres",
"testing",
"fixtures",
"rawsql"
],
"license": "MIT",
"author": "msugiura",
"repository": {
"type": "git",
"url": "https://github.com/mk3008/rawsql-ts.git",
"directory": "packages/testkit-postgres"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@rawsql-ts/sql-contract": "^0.3.1",
"@rawsql-ts/testkit-core": "^0.16.5",
"rawsql-ts": "^0.20.0"
},
"devDependencies": {
"typescript": "^5.8.2",
"vitest": "^4.0.7"
},
"files": [
"dist"
]
}