-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 945 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 945 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
32
33
{
"name": "github-actions-workshop",
"version": "1.0.0",
"description": "A hands-on workshop for learning GitHub Actions through practical exercises",
"scripts": {
"test": "node --test src/*.test.js",
"test:full-report": "c8 node src/*.test.js",
"test:short-report": "c8 node src/*.test.js 2>&1 | sed -n '/^--------------/,$p'",
"compare-coverage-reports": "node src/scripts/compare-coverage-reports.js",
"build": "node src/scripts/build.js",
"format": "npx prettier --write ."
},
"keywords": [
"github-actions",
"ci-cd",
"workshop",
"tutorial"
],
"author": "Vegard Valvik and Sindre Bøyum",
"license": "MIT",
"type": "module",
"dependencies": {
"github-markdown-css": "^5.8.1",
"marked": "^16.4.1",
"marked-alert": "^2.1.2",
"marked-gfm-heading-id": "^4.1.2",
"puppeteer": "^24.26.0",
"react": "18.0.0"
},
"devDependencies": {
"c8": "^10.1.3"
}
}