mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-21 15:49:30 +01:00
bb0df35464
* upgrade glob to 10.4.2 * rebuild dist files
50 lines
1.5 KiB
JSON
50 lines
1.5 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",
|
|
"test": "jest",
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
|
},
|
|
"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/cache": "^3.1.4",
|
|
"@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",
|
|
"folder-hash": "^4.0.4",
|
|
"glob": "^10.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/folder-hash": "^4.0.2",
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^20.11.30",
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
"@typescript-eslint/parser": "^7.3.1",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
}
|