Run npm install so have clear baseline

This commit is contained in:
Sam Partington
2020-06-24 12:07:13 +01:00
parent 6846c702da
commit 43c1bea680
403 changed files with 22000 additions and 7778 deletions

104
node_modules/nock/package.json generated vendored
View File

@@ -1,33 +1,50 @@
{
"name": "nock",
"description": "HTTP server mocking and expectations library for Node.js",
"tags": [
"Mock",
"HTTP",
"testing",
"isolation"
"_args": [
[
"nock@12.0.3",
"/Users/sam/code/codeql-action"
]
],
"version": "12.0.3",
"author": "Pedro Teixeira <pedro.teixeira@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/nock/nock.git"
"_development": true,
"_from": "nock@12.0.3",
"_id": "nock@12.0.3",
"_inBundle": false,
"_integrity": "sha512-QNb/j8kbFnKCiyqi9C5DD0jH/FubFGj5rt9NQFONXwQm3IPB0CULECg/eS3AU1KgZb/6SwUa4/DTRKhVxkGABw==",
"_location": "/nock",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "nock@12.0.3",
"name": "nock",
"escapedName": "nock",
"rawSpec": "12.0.3",
"saveSpec": null,
"fetchSpec": "12.0.3"
},
"_requiredBy": [
"#DEV:/",
"/@types/nock"
],
"_resolved": "https://registry.npmjs.org/nock/-/nock-12.0.3.tgz",
"_spec": "12.0.3",
"_where": "/Users/sam/code/codeql-action",
"author": {
"name": "Pedro Teixeira",
"email": "pedro.teixeira@gmail.com"
},
"bugs": {
"url": "http://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",
"lodash": "^4.17.13",
"propagate": "^2.0.0"
},
"description": "HTTP server mocking and expectations library for Node.js",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.0",
"assert-rejects": "^1.0.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
@@ -41,7 +58,6 @@
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"got": "^10.5.2",
"@sinonjs/fake-timers": "^6.0.0",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
@@ -55,9 +71,34 @@
"superagent": "^5.0.2",
"tap": "14.6.1"
},
"engines": {
"node": ">= 10.13"
},
"files": [
"index.js",
"lib",
"types/index.d.ts"
],
"homepage": "https://github.com/nock/nock#readme",
"license": "MIT",
"main": "./index.js",
"name": "nock",
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"tests/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nock/nock.git"
},
"scripts": {
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
"format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
"format:fix": "prettier --write '**/*.{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'",
@@ -68,19 +109,12 @@
"test:mocha": "nyc mocha $(grep -lr '^\\s*it(' tests)",
"test:tap": "tap --100 --coverage --coverage-report=text ./tests/test_*.js"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"tests/"
]
},
"license": "MIT",
"files": [
"index.js",
"lib",
"types/index.d.ts"
]
}
"tags": [
"Mock",
"HTTP",
"testing",
"isolation"
],
"types": "types",
"version": "12.0.3"
}