semantic-version/package.json
2023-09-30 07:28:24 -04:00

47 lines
1.3 KiB
JSON

{
"name": "semantic-version",
"version": "0.0.0",
"description": "Semantic Version GitHub Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/**.ts",
"format-check": "prettier --check **/**.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --runInBand --config ./jest.config.js",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulhatch/semantic-version.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Paul Hatcherian",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulhatch/semantic-version/issues"
},
"homepage": "https://github.com/paulhatch/semantic-version#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.7.1",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.50.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}