cargo-semver-checks/package.json

51 lines
1.5 KiB
JSON
Raw Permalink 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": {
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",
"test": "jest",
"all": "npm run format && npm run lint && npm run build && npm test"
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/cache": "^3.1.4",
2023-01-09 00:46:08 +01:00
"@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",
"folder-hash": "^4.0.4",
"glob": "^10.2.2"
2023-01-09 00:46:08 +01:00
},
"devDependencies": {
"@types/folder-hash": "^4.0.2",
"@types/jest": "^29.5.1",
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",
"jest": "^29.5.0",
2023-02-22 11:42:39 +01:00
"prettier": "^2.8.4",
"ts-jest": "^29.1.0",
2023-02-21 12:18:52 +01:00
"typescript": "^4.9.5"
2023-01-09 00:46:08 +01:00
}
}