mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
* Bump the npm group with 3 updates Bumps the npm group with 3 updates: [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [eslint-plugin-github](https://github.com/github/eslint-plugin-github) and [nock](https://github.com/nock/nock). Updates `@typescript-eslint/parser` from 7.1.0 to 7.1.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.1.1/packages/parser) Updates `eslint-plugin-github` from 4.10.1 to 4.10.2 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.10.1...v4.10.2) Updates `nock` from 13.5.3 to 13.5.4 - [Release notes](https://github.com/nock/nock/releases) - [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md) - [Commits](https://github.com/nock/nock/compare/v13.5.3...v13.5.4) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm - dependency-name: nock dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
90 lines
2.3 KiB
JSON
90 lines
2.3 KiB
JSON
{
|
|
"name": "nock",
|
|
"description": "HTTP server mocking and expectations library for Node.js",
|
|
"tags": [
|
|
"Mock",
|
|
"HTTP",
|
|
"testing",
|
|
"isolation"
|
|
],
|
|
"version": "13.5.4",
|
|
"author": "Pedro Teixeira <pedro.teixeira@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nock/nock.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nock/nock/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10.13"
|
|
},
|
|
"main": "./index.js",
|
|
"types": "types",
|
|
"dependencies": {
|
|
"debug": "^4.1.0",
|
|
"json-stringify-safe": "^5.0.1",
|
|
"propagate": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@definitelytyped/dtslint": "^0.0.163",
|
|
"@sinonjs/fake-timers": "^11.2.2",
|
|
"assert-rejects": "^1.0.0",
|
|
"chai": "^4.1.2",
|
|
"dirty-chai": "^2.0.1",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard": "^17.0.0-0",
|
|
"eslint-plugin-import": "^2.16.0",
|
|
"eslint-plugin-mocha": "^10.0.3",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"form-data": "^4.0.0",
|
|
"got": "^11.3.0",
|
|
"jest": "^29.7.0",
|
|
"mocha": "^9.1.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.0.0",
|
|
"prettier": "3.2.4",
|
|
"proxyquire": "^2.1.0",
|
|
"rimraf": "^3.0.0",
|
|
"semantic-release": "^22.0.5",
|
|
"sinon": "^15.0.1",
|
|
"sinon-chai": "^3.7.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"scripts": {
|
|
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
|
|
"format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
|
|
"lint": "run-p lint:js lint:ts",
|
|
"lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'",
|
|
"lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'",
|
|
"lint:ts": "dtslint --expectOnly types",
|
|
"test": "nyc --reporter=lcov --reporter=text mocha --recursive tests",
|
|
"test:coverage": "open coverage/lcov-report/index.html",
|
|
"test:jest": "jest tests_jest --detectLeaks"
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"types/index.d.ts"
|
|
],
|
|
"release": {
|
|
"branches": [
|
|
"+([0-9])?(.{+([0-9]),x}).x",
|
|
"main",
|
|
"next",
|
|
"next-major",
|
|
{
|
|
"name": "beta",
|
|
"prerelease": true
|
|
},
|
|
{
|
|
"name": "alpha",
|
|
"prerelease": true
|
|
}
|
|
]
|
|
}
|
|
}
|