2023-01-09 00:46:08 +01:00
|
|
|
{
|
|
|
|
"name": "cargo-semver-checks-action",
|
|
|
|
"version": "2.0.0",
|
|
|
|
"description": "Lint your crate API changes for semver violations.",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2023-02-22 11:42:39 +01:00
|
|
|
"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"
|
2023-01-09 00:46:08 +01:00
|
|
|
},
|
|
|
|
"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",
|
2023-02-22 11:42:39 +01:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-01-09 00:46:08 +01:00
|
|
|
"@actions/github": "^5.1.1",
|
|
|
|
"@actions/io": "^1.1.2",
|
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2023-02-22 11:42:39 +01:00
|
|
|
"@types/node-fetch": "^2.6.2"
|
2023-01-09 00:46:08 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-21 12:18:52 +01:00
|
|
|
"@types/node": "^18.11.18",
|
2023-02-22 11:42:39 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
|
|
|
"@typescript-eslint/parser": "^5.53.0",
|
2023-02-21 12:18:52 +01:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-02-22 11:42:39 +01:00
|
|
|
"eslint": "^8.34.0",
|
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"prettier": "^2.8.4",
|
2023-02-21 12:18:52 +01:00
|
|
|
"typescript": "^4.9.5"
|
2023-01-09 00:46:08 +01:00
|
|
|
}
|
|
|
|
}
|