-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@kie/mock-github",
"version": "0.0.0-semantically-released",
"description": "A bunch of tools to configure and create a local github environment to test your github actions in without having to clutter your github with test repositories, actions or hitting github api rate limits.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"repository": {
"type": "git",
"url": "https://github.com/kiegroup/mock-github.git"
},
"homepage": "https://github.com/kiegroup/mock-github#readme",
"bugs": {
"url": "https://github.com/kiegroup/mock-github/issues"
},
"keywords": [
"github",
"github actions",
"mock",
"test"
],
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest",
"test:report": "npm test -- --coverage --testResultsProcessor=jest-sonar-reporter",
"update:api-spec": "node ./scripts/api-spec.js",
"update:endpoint-details": "node ./scripts/endpoint-details.js",
"update:endpoint-requests": "node ./scripts/endpoint-requests.js",
"update-all": "npm-run-all update:*",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"file": "ts-node",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"author": "Shubh Bapna <sbapna@redhat.com>",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@actions/artifact": "^1.1.0",
"@octokit/rest": "^19.0.4",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vercel/ncc": "^0.34.0",
"axios": "^0.27.2",
"eslint": "^8.32.0",
"github-openapi-graphql-query": "^4.1.0",
"husky": "^8.0.3",
"jest": "^28.1.1",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@octokit/openapi-types-ghec": "^18.0.0",
"ajv": "^8.11.0",
"express": "^4.18.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"nock": "^13.2.7",
"simple-git": "^3.8.0",
"totalist": "^3.0.0"
},
"jestSonar": {
"reportPath": "coverage"
},
"lint-staged": {
"*.ts": "npm run lint:fix"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"labels": false,
"releasedLabels": false
}
]
]
}
}