-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "git-info-action",
"version": "1.0.0",
"description": "Provides git information",
"main": "./lib/index.js",
"scripts": {
"build": "tsc && npm run package",
"package": "npx ncc build --source-map --license licenses.txt",
"test": "npm run build && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YunaBraska/git-info-action"
},
"keywords": [
"actions",
"git",
"info"
],
"author": "Yuna Morgenstern",
"license": "Apache-2.0 license",
"bugs": {
"url": "https://github.com/YunaBraska/git-info-action/issues"
},
"homepage": "https://github.com/YunaBraska/git-info-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"npm-check-updates": "^16.14.20"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.64",
"@types/xmldoc": "^1.1.9",
"@vercel/ncc": "^0.36.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
}
}