-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.39 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "online-devops-dojo-coach",
"version": "1.0.1",
"description": "The Online DevOps Dojo coach interacts with student's PR in Katacoda trainings.",
"author": "No user",
"license": "MPL-2.0",
"repository": "https://github.com/dxc-technology/online-devops-dojo.git",
"homepage": "https://dxc-technology.github.io/about-devops-dojo/",
"bugs": "https://github.com/dxc-technology/online-devops-dojo/issues/new/choose",
"keywords": [
"DevOps",
"Dojo",
"Katacoda",
"GitHub Actions"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "eslint",
"eslint:github-action": "eslint functions/**",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@probot/serverless-lambda": "0.5.0",
"minimist": "^1.2.5",
"node": "^12.19.0",
"probot": "^9.15.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.13.0",
"jest": "^25.5.4",
"nock": "^12.0.3",
"nodemon": "^2.0.6",
"prettier": "1.19.1",
"smee-client": "^1.2.2",
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0",
"npm": ">6.0.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}