-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "recognize-release-action",
"version": "1.0.0",
"description": "This action can annotate deployments to environments with changed commits and (JIRA) tickets.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recognizegroup/recognize-release-action.git"
},
"keywords": [
"actions",
"node",
"release",
"gitflow"
],
"author": "Recognize B.V.",
"license": "LGPL-3.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/rest": "^19.0.5",
"@octokit/types": "^6.34.0",
"@octokit/webhooks-types": "^5.2.0",
"axios": "^1.1.3",
"dayjs": "^1.11.6",
"jest-mock": "^29.2.2",
"pac-proxy-agent": "^5.0.0",
"proxy-from-env": "^1.1.0",
"ts-jest": "^29.0.3"
},
"devDependencies": {
"@octokit/webhooks": "^9.22.0",
"@types/node": "^16.9.6",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.2",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
"typescript": "^4.8.4"
}
}