mirror of
https://github.com/webiny/action-conventional-commits.git
synced 2024-11-10 12:09:34 +01:00
30 lines
832 B
JSON
30 lines
832 B
JSON
{
|
|
"name": "action-conventional-commits",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:doitadrian/action-conventional-commits.git",
|
|
"author": "Adrian Smijulj <adrian1358@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"got": "^11.8.6",
|
|
"lodash.get": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.10.2",
|
|
"@babel/preset-env": "^7.10.2",
|
|
"@babel/preset-typescript": "^7.10.1",
|
|
"@types/jest": "^26.0.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"babel-jest": "^26.0.1",
|
|
"jest": "^26.0.1",
|
|
"prettier": "^2.0.2",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --out dist/main",
|
|
"watch": "ncc build src/main.ts --out dist/main --watch",
|
|
"test": "jest"
|
|
}
|
|
}
|