forked from stackpress/ingest
-
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) · 1.18 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.18 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
{
"private": true,
"workspaces": [
"examples/*",
"ingest"
],
"scripts": {
"build": "yarn --cwd ingest build",
"entries:build": "yarn --cwd examples/with-entries build",
"entries:dev": "yarn --cwd examples/with-entries dev",
"gcp:build": "yarn --cwd examples/with-gcp build",
"gcp:dev": "yarn --cwd examples/with-gcp dev",
"hbs:build": "yarn --cwd examples/with-handlebars build",
"hbs:dev": "yarn --cwd examples/with-handlebars dev",
"http:build": "yarn --cwd examples/with-http build",
"http:dev": "yarn --cwd examples/with-http dev",
"imports:build": "yarn --cwd examples/with-imports build",
"imports:dev": "yarn --cwd examples/with-imports dev",
"lambda:build": "yarn --cwd examples/with-lambda build",
"lambda:dev": "yarn --cwd examples/with-lambda dev",
"plugins:build": "yarn --cwd examples/with-plugins build",
"plugins:dev": "yarn --cwd examples/with-plugins dev",
"whatwg:build": "yarn --cwd examples/with-whatwg build",
"whatwg:dev": "yarn --cwd examples/with-whatwg dev",
"report": "nyc yarn test && nyc report -r lcov",
"test": "yarn --cwd ingest test"
},
"devDependencies": {
"nyc": "17.1.0"
}
}