This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "github-policy-service",
"version": "1.2.0",
"description": "",
"main": "src/app.js",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint .",
"lintfix": "eslint --fix .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liatrio-enterprise/github-policy-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liatrio-enterprise/github-policy-service/issues"
},
"homepage": "https://github.com/liatrio-enterprise/github-policy-service#readme",
"dependencies": {
"@octokit/app": "^13.0.5",
"@octokit/core": "^4.0.4",
"@octokit/plugin-paginate-rest": "^3.1.0",
"@octokit/rest": "^19.0.3",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"pino": "^8.4.0"
},
"devDependencies": {
"@liatrio/eslint-config": "^1.3.0",
"@semantic-release/git": "^10.0.1",
"chance": "^1.1.8",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.2",
"jest-when": "^3.5.1",
"pino-pretty": "^8.1.0",
"semantic-release": "^19.0.3"
},
"jest": {
"cacheDirectory": ".jest/cache",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!app.js",
"!**node_modules/**",
"!**.jest/**",
"!<rootDir>/test/util/jest-setup.js"
],
"coverageDirectory": ".jest/coverage",
"setupFilesAfterEnv": [
"<rootDir>/test/util/jest-setup.js"
],
"resetMocks": true
}
}