Files
codeql-action/node_modules/nock/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
2.3 KiB
JSON
Raw Normal View History

{
2020-06-18 18:43:30 +02:00
"name": "nock",
"description": "HTTP server mocking and expectations library for Node.js",
"tags": [
"Mock",
"HTTP",
"testing",
"isolation"
],
2024-01-30 06:30:22 -08:00
"version": "13.5.1",
2020-06-18 18:43:30 +02:00
"author": "Pedro Teixeira <pedro.teixeira@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/nock/nock.git"
},
"bugs": {
2023-07-13 09:09:17 +00:00
"url": "https://github.com/nock/nock/issues"
},
2020-06-18 18:43:30 +02:00
"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": {
2023-07-17 20:17:37 +00:00
"@definitelytyped/dtslint": "^0.0.163",
2023-11-20 14:35:28 -08:00
"@sinonjs/fake-timers": "^11.2.2",
"assert-rejects": "^1.0.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
2023-07-13 09:09:17 +00:00
"eslint": "^8.8.0",
2023-10-17 19:41:41 +00:00
"eslint-config-prettier": "^9.0.0",
2023-07-13 09:09:17 +00:00
"eslint-config-standard": "^17.0.0-0",
"eslint-plugin-import": "^2.16.0",
2023-07-13 09:09:17 +00:00
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.0.0",
2023-07-13 09:09:17 +00:00
"eslint-plugin-promise": "^6.0.0",
2021-07-27 16:54:30 +00:00
"form-data": "^4.0.0",
"got": "^11.3.0",
2024-01-30 06:30:22 -08:00
"jest": "^29.7.0",
2023-07-13 09:09:17 +00:00
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
2024-01-15 17:41:40 +00:00
"prettier": "3.1.0",
"proxyquire": "^2.1.0",
"rimraf": "^3.0.0",
2023-10-23 18:03:04 +00:00
"semantic-release": "^22.0.5",
2023-07-13 09:09:17 +00:00
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
2023-07-17 20:17:37 +00:00
"typescript": "^5.0.4"
},
"scripts": {
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
2020-06-18 18:43:30 +02:00
"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'",
2023-07-13 09:09:17 +00:00
"lint:ts": "dtslint --expectOnly types",
2023-11-20 14:35:28 -08:00
"test": "nyc --reporter=lcov --reporter=text mocha --recursive tests",
2024-01-30 06:30:22 -08:00
"test:coverage": "open coverage/lcov-report/index.html",
"test:jest": "jest tests_jest --detectLeaks"
2020-06-18 18:43:30 +02:00
},
"license": "MIT",
"files": [
"index.js",
"lib",
"types/index.d.ts"
2021-07-27 16:54:30 +00:00
],
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
2022-02-24 17:03:29 +00:00
}