cargo-semver-checks/package.json

35 lines
968 B
JSON
Raw Normal View History

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": {
"build": "ncc build src/main.ts --license licenses.txt --minify"
},
"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/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@types/node-fetch": "^2.6.2",
"@actions/exec": "^1.1.1"
2023-01-09 00:46:08 +01:00
},
"devDependencies": {
2023-02-21 12:18:52 +01:00
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.36.1",
"typescript": "^4.9.5"
2023-01-09 00:46:08 +01:00
}
}