cargo-semver-checks/package.json
2023-02-27 16:42:26 -05:00

43 lines
1.3 KiB
JSON

{
"name": "cargo-semver-checks-action",
"version": "2.0.0",
"description": "Lint your crate API changes for semver violations.",
"main": "index.js",
"scripts": {
"build": "ncc build src/main.ts --license licenses.txt --minify",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"all": "npm run format && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgr0dzicki/cargo-semver-checks-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgr0dzicki/cargo-semver-checks-action/issues"
},
"homepage": "https://github.com/mgr0dzicki/cargo-semver-checks-action#readme",
"dependencies": {
"@actions-rs/core": "^0.1.6",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@types/node-fetch": "^2.6.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}