-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 1.74 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
69
70
71
72
73
74
{
"name": "auto-me-bot",
"version": "3.0.2",
"private": true,
"type": "module",
"description": "A Probot app that takes care of your GitHub repos for you",
"author": {
"name": "Tomer Figenblat",
"url": "https://github.com/TomerFi"
},
"license": "ISC",
"homepage": "https://auto-me-bot.tomfi.info",
"repository": {
"type": "git",
"url": "https://github.com/TomerFi/auto-me-bot"
},
"bugs": {
"url": "https://github.com/TomerFi/auto-me-bot/issues"
},
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"start": "probot run ./src/auto-me-bot.js",
"lint": "eslint src tests",
"test": "c8 npm run tests",
"tests": "mocha --check-leaks --fail-zero --color --ui tdd --recursive ./tests/",
"tests:rep": "mocha --check-leaks --fail-zero --ui tdd --recursive --reporter json ./tests/ > unit-tests-result.json"
},
"dependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/lint": "^19.6.0",
"@commitlint/load": "^19.5.0",
"deep-email-validator": "^0.1.21",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"marked": "^15.0.2",
"probot": "^13.4.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"c8": "^10.1.2",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0"
},
"engines": {
"node": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"c8": {
"all": true,
"check-coverage": true,
"clean": true,
"compact": false,
"include": [
"src/**/*.js"
],
"exclude": [
"src/app-runner.js"
],
"reporter": [
"html",
"json",
"text"
]
}
}