setup-msbuild/package.json

51 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2020-02-01 02:14:06 +07:00
{
"name": "setup-msbuild",
2023-02-04 06:02:07 +07:00
"version": "1.3.1",
2020-02-01 02:14:06 +07:00
"private": true,
"description": "Helps set up specific MSBuild tool into PATH for later usage.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
2020-04-05 02:17:00 +07:00
"all": "npm run build && npm run format && npm run lint && npm run pack"
2020-02-01 02:14:06 +07:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/setup-msbuild.git"
},
"keywords": [
"actions",
"vs",
"setup",
"visual studio",
"msbuild",
"vstest"
],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
2022-10-13 06:07:40 +07:00
"@actions/core": "^1.10.0",
2020-02-01 02:14:06 +07:00
"@actions/exec": "^1.0.3",
"@actions/tool-cache": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.25",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^5.16.0",
Bump semver, eslint-plugin-github and eslint-plugin-jest Bumps [semver](https://github.com/npm/node-semver) to 6.3.1 and updates ancestor dependencies [semver](https://github.com/npm/node-semver), [eslint-plugin-github](https://github.com/github/eslint-plugin-github) and [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest). These dependencies need to be updated together. Updates `semver` from 6.3.0 to 6.3.1 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/v6.3.1/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v6.3.1) Updates `semver` from 5.7.1 to 6.3.1 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/v6.3.1/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v6.3.1) Updates `semver` from 5.7.0 to 6.3.1 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/v6.3.1/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v6.3.1) Updates `eslint-plugin-github` from 2.0.0 to 4.8.0 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v2.0.0...v4.8.0) Updates `eslint-plugin-jest` from 22.21.0 to 27.2.2 - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v22.21.0...v27.2.2) --- updated-dependencies: - dependency-name: semver dependency-type: indirect - dependency-name: semver dependency-type: indirect - dependency-name: semver dependency-type: indirect - dependency-name: eslint-plugin-github dependency-type: direct:development - dependency-name: eslint-plugin-jest dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
2023-07-11 09:45:39 +07:00
"eslint-plugin-github": "^4.8.0",
"eslint-plugin-jest": "^27.2.2",
2020-02-01 02:14:06 +07:00
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
}
}