-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "build-failure-analyser-action",
"version": "0.1.0",
"description": "This action prints \"Hello World\" or \"Hello\" + the name of a person to greet to the log.",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"prepare": "ncc build src/index.js -o dist --source-map",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Superbasil3/build-failure-analyser-action.git"
},
"keywords": [],
"author": "superbasil",
"license": "ISC",
"bugs": {
"url": "https://github.com/Superbasil3/build-failure-analyser-action/issues"
},
"homepage": "https://github.com/Superbasil3/build-failure-analyser-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.0",
"deasync": "^0.1.29",
"fs": "^0.0.1-security",
"line-reader": "^0.4.0",
"ncc": "^0.3.6",
"showdown": "^2.1.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0"
}
}