-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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": "action-auto-link-aggregator",
"version": "2.0.0",
"engines": {
"node": ">= 20"
},
"private": true,
"description": "Find urls in merged commits for aggregation to a specific pull request",
"main": "lib/main.js",
"scripts": {
"run": "tsc && ncc build && node dist/index.js",
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getkalido/action-auto-link-aggregator.git"
},
"keywords": [
"actions",
"find",
"comment"
],
"author": "Kalido",
"license": "MIT",
"bugs": {
"url": "https://github.com/getkalido/action-auto-link-aggregator/issues"
},
"homepage": "https://github.com/getkalido/action-auto-link-aggregator#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/axios": "^0.14.0"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.18.39",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.32.0",
"eslint": "^8.45.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-jest": "^25.7.0",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"simple-git": "^3.19.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
}
}