-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.5 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ammar-ahmed/automation-app-bot",
"version": "1.3.2",
"description": "Automation made easy and fun OH Yeah!",
"author": "Ammar-Ahmed-Butt <[email protected]> (https://ammar-knowledge.github.io/automation-app-bot/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ammar-knowledge/automation-app-bot.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exec 'npm start'",
"start": "probot run ./index.js",
"test": "cross-env NODE_ENV=test jest && standard",
"test:unit": "cross-env LOG_LEVEL=warn NODE_ENV=test jest __tests__/unit/* && standard",
"test:e2e": "cross-env LOG_LEVEL=warn NODE_ENV=test jest __tests__/e2e/* && standard",
"test:scheduler": "cross-env LOG_LEVEL=warn NODE_ENV=test jest scheduler/test.js && standard",
"test-watch": "cross-env NODE_ENV=test jest --watch",
"test-coverage": "cross-env NODE_ENV=test standard && jest --collectCoverage && codecov",
"lint": "standard --fix",
"build": "cross-env NODE_ENV=production nodemon --exec 'npm run build'"
},
"dependencies": {
"cache-manager": "^6.0.0",
"cache-manager-ioredis": "^2.1.0",
"colors": "^1.3.2",
"express": "^4.21.2",
"express-prometheus-middleware": "^1.2.0",
"gc-stats": "^1.4.1",
"handlebars": "^4.7.6",
"jira-client": "^8.2.2",
"js-yaml": "^4.0.0",
"lint": "^1.1.2",
"lodash": "^4.17.20",
"minimatch": "^10.0.0",
"moment-timezone": "^0.5.31",
"node": "^23.0.0",
"node-fetch": "^3.0.0",
"p-iteration": "^1.1.8",
"probot": "^13.3.9",
"prom-client": "^13.0.0",
"redis": "^4.6.12"
},
"devDependencies": {
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"jest": "^29.0.0",
"nock": "13.5.6",
"nodemon": "^3.0.0",
"object-dot": "^1.7.0",
"smee-client": "^2.0.0",
"standard": "^17.0.0"
},
"engines": {
"node": "23.6.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"setupFiles": [
"./__fixtures__/setup/jestSetUp.js"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js"
]
},
"bugs": {
"url": "https://github.com/Ammar-Knowledge/automation-app-bot/issues"
},
"homepage": "https://github.com/Ammar-Knowledge/automation-app-bot#readme",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"keywords": [
"pr",
"commit",
"bot",
"github-app",
"coventional-commits",
"commitlint"
]
}