forked from TomerFi/auto-me-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.68 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
{
"name": "auto-me-bot",
"version": "1.5.2",
"private": true,
"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 --ext js",
"test": "nyc 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": "^17.6.7",
"@commitlint/lint": "^17.6.7",
"@commitlint/load": "^17.6.7",
"@digitalroute/email-verify": "^0.3.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^7.0.1",
"probot": "^12.3.1"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-plugin-editorconfig": "^4.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">= 14.0.0"
},
"nyc": {
"all": true,
"check-coverage": true,
"clean": true,
"compact": false,
"include": [
"src/**/*.js"
],
"exclude": [
"src/app-runner.js"
],
"reporter": [
"html",
"json",
"text"
]
}
}