semantic-version/package.json
2022-04-04 23:17:26 -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 --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.6.0",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/parser": "^5.17.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.12.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}