forked from Andarist/create-commit-status-action
-
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": "create-commit-status-action",
"version": "1.0.0",
"description": "A simple GitHub action that create a commit status using the GitHub API.",
"keywords": [
"github-actions"
],
"main": "./dist/index.js",
"scripts": {
"build": "parcel build ./index.ts --no-source-maps --target=node --bundle-node-modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/create-commit-status-action.git"
},
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/create-commit-status-action/issues"
},
"homepage": "https://github.com/Andarist/create-commit-status-action#readme",
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/github": "^2.1.0",
"os-name": "^3.1.0"
},
"devDependencies": {
"@types/node": "^13.5.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.4",
"parcel": "^1.12.4",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"resolutions": {
"universal-user-agent": "file:./universal-user-agent"
}
}