-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 1.76 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": "kibana-github-actions",
"version": "1.0.0",
"description": "GitHub Actions used by Kibana",
"scripts": {
"postinstall": "[ \"$NODE_ENV\" = production ] && exit 0; husky install",
"test": "mocha",
"build": "tsc",
"lint": "eslint -c .eslintrc --fix --ext .ts .",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/kibana-github-actions.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/elastic/kibana-github-actions/issues"
},
"homepage": "https://github.com/elastic/kibana-github-actions#readme",
"overrides": {
"axios": "^1.7.9",
"cookie": "^0.7.2",
"cross-spawn": "^7.0.5",
"serialize-javascript": "^6.0.2"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.6.7",
"axios": "^1.7.9",
"backport": "^9.4.3",
"semver": "^7.3.7"
},
"devDependencies": {
"@octokit/webhooks-definitions": "^3.67.3",
"@swc/core": "^1.2.197",
"@swc/register": "^0.1.10",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^17.0.5",
"@types/semver": "^7.3.10",
"@types/uuid": "^8.3.1",
"@types/yargs": "^15.0.14",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^6.0.0",
"mocha": "^10.2.0",
"nock": "^13.4.0",
"prettier": "3.1.1",
"typescript": "^4.7.3",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add \"**/*.js\""
}
}
}