action-conventional-commits/package.json
2023-11-23 22:31:51 +01:00

31 lines
864 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.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"got": "^11.3.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"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"
}
}