-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.12 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.12 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
{
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"inquire": "yarn --cwd packages/inquire",
"mysql": "yarn --cwd packages/inquire-mysql2",
"pg": "yarn --cwd packages/inquire-pg",
"pglite": "yarn --cwd packages/inquire-pglite",
"sqlite": "yarn --cwd packages/inquire-sqlite3",
"build": "yarn inquire build && yarn mysql build && yarn pg build && yarn pglite build && yarn sqlite build",
"report": "yarn report:env nyc yarn test:inquire && nyc report -r lcov",
"report:env": "NODE_OPTIONS=\"--disable-warning=ExperimentalWarning --experimental-loader @istanbuljs/esm-loader-hook\"",
"test": "yarn inquire test && yarn mysql test && yarn pg test && yarn pglite test && yarn sqlite test",
"test:crdb": "yarn --cwd examples/with-crdb test",
"test:mysql2": "yarn --cwd examples/with-mysql2 test",
"test:pg": "yarn --cwd examples/with-pg test",
"test:pglite": "yarn --cwd examples/with-pglite test",
"test:sqlite3": "yarn --cwd examples/with-sqlite3 test"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "0.3.0",
"nyc": "17.1.0"
}
}