-
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) · 914 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 914 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": "birch",
"private": true,
"type": "module",
"scripts": {
"test": "gleam test --target javascript",
"test:coverage": "gleam build --target javascript && c8 node build/dev/javascript/birch/birch_test.mjs",
"test:integration": "gleam build --target javascript && node --test test/integration/test_runner.mjs",
"test:all:coverage": "gleam build --target javascript && c8 -- sh -c 'node build/dev/javascript/birch/birch_test.mjs && node --test test/integration/test_runner.mjs'",
"coverage:report": "c8 report",
"coverage:lcov": "c8 report --reporter=lcov"
},
"c8": {
"include": [
"build/dev/javascript/birch/**/*.mjs"
],
"exclude": [
"build/dev/javascript/birch/*_test.mjs"
],
"reporter": [
"text",
"html",
"lcov"
],
"report-dir": "coverage",
"all": false
},
"devDependencies": {
"c8": "^10.1.3"
}
}