-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "@mergeability/mergeable",
"version": "2.17.3",
"description": "",
"author": "Justin Law <hello@justinlaw.org> (https://github.io/mergeability/mergeable), Shine Lee <aungshine@gmail.com>",
"license": "AGPL-3.0-only",
"repository": "https://github.com/mergeability/mergeable.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"
},
"dependencies": {
"cache-manager": "^3.4.0",
"cache-manager-ioredis": "^2.1.0",
"colors": "^1.3.2",
"express-prometheus-middleware": "^1.1.0",
"handlebars": "^4.7.6",
"jira-client": "^6.21.1",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"minimatch": "^3.0.4",
"moment-timezone": "^0.5.31",
"node-fetch": "^2.6.1",
"p-iteration": "^1.1.8",
"probot": "^13.0.2",
"prom-client": "^13.1.0"
},
"devDependencies": {
"codecov": "^3.7.2",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nock": "14.0.0-beta.5",
"nodemon": "^2.0.3",
"object-dot": "^1.7.0",
"smee-client": "^1.0.1",
"standard": "^16.0.3"
},
"engines": {
"node": "^20"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"setupFiles": [
"./__fixtures__/setup/jestSetUp.js"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js"
]
},
"publishConfig": {
"access": "public"
},
"private": false
}