-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 849 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 849 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
{
"private": true,
"workspaces": [
"examples/*",
"ingest"
],
"scripts": {
"build": "yarn --cwd ingest build",
"entries": "yarn --cwd examples/with-entries",
"gcp": "yarn --cwd examples/with-gcp",
"hbs": "yarn --cwd examples/with-handlebars",
"http": "yarn --cwd examples/with-http",
"imports": "yarn --cwd examples/with-imports",
"lambda": "yarn --cwd examples/with-lambda",
"plugins": "yarn --cwd examples/with-plugins",
"whatwg": "yarn --cwd examples/with-whatwg",
"report": "yarn report:env nyc yarn test && nyc report -r lcov",
"report:env": "NODE_OPTIONS=\"--disable-warning=ExperimentalWarning --experimental-loader @istanbuljs/esm-loader-hook\"",
"test": "yarn --cwd ingest test"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "0.3.0",
"nyc": "17.1.0"
}
}