-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
{
"name": "beaver",
"version": "1.0.0",
"private": true,
"description": "A GitHub App built with Probot that logs actions",
"author": "Enyil Padilla <enyil@github.com>",
"license": "ISC",
"homepage": "https://github.com/octodemo/beaver#readme",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:es": "eslint .",
"lint:js": "standard",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:engines": "check-engine",
"lint:peer": "npm ls >/dev/null",
"test:coverage": "jest --coverage",
"test:unit": "jest 'test/unit/'",
"test:me": "jest ",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest 'test/integration/'",
"test:integration:debug": "LOG_LEVEL=debug DEBUG=nock run-s test:integration"
},
"dependencies": {
"@azure/event-hubs": "^5.12.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@probot/adapter-aws-lambda-serverless": "^3.0.4",
"axios": "^1.7.4",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"morgan": "^1.10.0",
"pg": "^8.11.5",
"probot": "12.3.3",
"proxy-agent": "^6.4.0"
},
"devDependencies": {
"@travi/any": "^3.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^6.6.0",
"http-status-codes": "^2.3.0",
"jest": "^29.5.0",
"nock": "^13.5.4",
"nodemon": "^3.1.4",
"smee-client": "^2.0.1"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}