mirror of
https://github.com/AnandChowdhary/package-version-action.git
synced 2025-12-06 07:48:12 +08:00
59 lines
1.3 KiB
JSON
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
|
|
}
|
|
}
|