Files
package-version-action/package.json
semantic-release-bot 252330a745 🔖 Release v1.1.1 [skip ci]
2021-05-04 06:20:47 +00:00

59 lines
1.3 KiB
JSON

{
"name": "package-version-action",
"version": "1.1.1",
"description": "GitHub Action to get the package.json version and a SHA suffix",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koj-co/package-version-action.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"starter"
],
"author": "Anand Chowdhary <mail@anandchowdhary.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koj-co/package-version-action/issues"
},
"homepage": "https://github.com/koj-co/package-version-action#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.23",
"@zeit/ncc": "^0.22.3",
"jest": "^26.6.3",
"semantic-release": "^17.4.2",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"@koj/config": "^1.2.11"
},
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false
}
}