action-conventional-commits/package.json

31 lines
834 B
JSON
Raw Normal View History

2020-06-11 07:50:40 +02:00
{
"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",
2020-06-11 09:37:37 +02:00
"@actions/github": "^2.1.1",
2020-06-11 12:53:03 +02:00
"@types/jest": "^26.0.0",
2020-06-11 09:37:37 +02:00
"got": "^11.3.0",
"lodash.get": "^4.4.2"
2020-06-11 07:50:40 +02:00
},
"devDependencies": {
2020-06-11 12:53:03 +02:00
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
2020-06-11 07:50:40 +02:00
"@zeit/ncc": "^0.22.0",
2020-06-11 12:53:03 +02:00
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
2020-06-11 07:50:40 +02:00
"prettier": "^2.0.2"
},
"scripts": {
2020-06-11 12:53:03 +02:00
"build": "ncc build src/main.ts --out dist/main",
"watch": "ncc build src/main.ts --out dist/main --watch",
"test": "jest"
2020-06-11 07:50:40 +02:00
}
}