generated from githubuniverseworkshops/github-devsecops-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 985 Bytes
/
package.json
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
34
35
36
{
"name": "github-devsecops-fundamentals",
"version": "1.0.0",
"description": "GitHub Universe 2023 workshop: GitHub DevSecOps Fundamentals",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"functional-test": "npx playwright test",
"unit-test": "jest --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/githubuniverseworkshops/github-devsecops-fundamentals.git"
},
"keywords": [
"GitHub",
"DevSecOps",
"Fundamentals",
"Universe",
"Workshop"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/githubuniverseworkshops/github-devsecops-fundamentals/issues"
},
"homepage": "https://github.com/githubuniverseworkshops/github-devsecops-fundamentals#readme",
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/node": "^20.8.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}