forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 953 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 953 Bytes
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
{
"name": "zql-integration-tests",
"description": "Integration tests of ZQL, ZQLite, ZPG",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-types": "tsc",
"check-types:watch": "tsc --watch",
"build:bin": "tsc -p tsconfig.bin.json",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"test": "vitest run",
"test:watch": "vitest watch",
"bench": "vitest bench",
"test-types": "vitest run --typecheck.only --no-browser.enabled",
"test-types:watch": "vitest watch --typecheck.only --no-browser.enabled"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.7.0",
"@rocicorp/prettier-config": "^0.3.0",
"@types/tmp": "^0.2.6",
"shared": "0.0.0",
"typescript": "~5.8.2"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}