npm install

This commit is contained in:
Henry Whitaker
2021-03-07 09:24:01 +00:00
parent 974384db8a
commit 2219b0213c
2674 changed files with 278065 additions and 156050 deletions

View File

@@ -1,54 +1,108 @@
{
"_args": [
[
"webpack-cli@3.3.12",
"/home/henry/Documents/git/Speedtest-tracker-docker/conf/site"
]
],
"_development": true,
"_from": "webpack-cli@3.3.12",
"_id": "webpack-cli@3.3.12",
"_inBundle": false,
"_integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==",
"_location": "/webpack-cli",
"_phantomChildren": {
"cliui": "5.0.0",
"emoji-regex": "7.0.3",
"find-up": "3.0.0",
"get-caller-file": "2.0.5",
"has-flag": "3.0.0",
"is-fullwidth-code-point": "2.0.0",
"isexe": "2.0.0",
"nice-try": "1.0.5",
"require-directory": "2.1.1",
"require-main-filename": "2.0.0",
"semver": "5.7.1",
"set-blocking": "2.0.0",
"which-module": "2.0.0",
"y18n": "4.0.0",
"yargs-parser": "13.1.2"
"name": "webpack-cli",
"version": "3.3.12",
"description": "CLI for webpack & friends",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "webpack-cli@3.3.12",
"name": "webpack-cli",
"escapedName": "webpack-cli",
"rawSpec": "3.3.12",
"saveSpec": null,
"fetchSpec": "3.3.12"
},
"_requiredBy": [
"/laravel-mix"
],
"_resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz",
"_spec": "3.3.12",
"_where": "/home/henry/Documents/git/Speedtest-tracker-docker/conf/site",
"bin": {
"webpack-cli": "bin/cli.js"
"webpack-cli": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/webpack/webpack-cli/issues"
"main": "./bin/cli.js",
"engines": {
"node": ">=6.11.5"
},
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web"
],
"files": [
"bin",
"scripts"
],
"scripts": {
"bootstrap": "npm run clean:all && npm install && lerna bootstrap",
"build": "tsc",
"changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile CHANGELOG.md --same-file",
"clean:all": "rimraf node_modules packages/*/{node_modules}",
"format": "npm run format:js && npm run format:ts",
"format:js": "prettier-eslint ./bin/*.js ./bin/**/*.js ./test/**/*.js ./packages/**/**/*.js ./packages/**/*.js --write",
"format:ts": "prettier-eslint ./packages/**/**/*.ts ./packages/**/*.ts ./packages/**/**/**/*.ts --write",
"lint": "eslint \"./bin/*.js\" \"./bin/**/*.js\" \"./test/**/*.js\" \"packages/**/!(node_modules)/*.ts\" \"packages/**/!(node_modules)/**/*.ts\"",
"pretest": "npm run build && npm run lint",
"reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov",
"test": "nyc jest --maxWorkers=4 --reporters=default --reporters=jest-junit",
"test:cli": "nyc jest test/ --maxWorkers=4 --reporters=default --reporters=jest-junit",
"test:packages": "nyc jest packages/ --maxWorkers=4 --reporters=default --reporters=jest-junit",
"test:ci": "nyc jest --maxWorkers=$(nproc) --reporters=default --reporters=jest-junit",
"travis:integration": "npm run build && npm run test && npm run reportCoverage",
"travis:lint": "npm run build && npm run lint",
"watch": "npm run build && tsc -w",
"publish:monorepo": "npm run format && npm run test && lerna publish -m \"chore: monorepo version update\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.md": [
"prettier --parser markdown --write",
"git add"
],
"{packages,bin}/**/!(__testfixtures__)/**.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"npm run format:ts",
"git add"
],
"*.js": [
"npm run format:js",
"git add"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"cobertura"
],
"transform": {
"^.+\\.(ts)?$": "ts-jest"
},
"testRegex": [
"/__tests__/.*\\.(test.js|test.ts)$",
"/test/.*\\.(test.js|test.ts)$"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"nyc": {
"include": [
"bin/**.js",
"packages/**/*.js"
],
"reporter": [
"lcov"
],
"all": true
},
"config": {
"commitizen": {
@@ -71,7 +125,9 @@
"v8-compile-cache": "^2.1.1",
"yargs": "^13.3.2"
},
"description": "CLI for webpack & friends",
"peerDependencies": {
"webpack": "4.x.x"
},
"devDependencies": {
"@babel/preset-env": "^7.8.3",
"@babel/register": "7.8.3",
@@ -114,110 +170,5 @@
"typescript": "3.5.2",
"webpack": "4.x.x",
"webpack-dev-server": "3.7.2"
},
"engines": {
"node": ">=6.11.5"
},
"files": [
"bin",
"scripts"
],
"homepage": "https://github.com/webpack/webpack-cli#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"cobertura"
],
"transform": {
"^.+\\.(ts)?$": "ts-jest"
},
"testRegex": [
"/__tests__/.*\\.(test.js|test.ts)$",
"/test/.*\\.(test.js|test.ts)$"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web"
],
"license": "MIT",
"lint-staged": {
"*.md": [
"prettier --parser markdown --write",
"git add"
],
"{packages,bin}/**/!(__testfixtures__)/**.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"npm run format:ts",
"git add"
],
"*.js": [
"npm run format:js",
"git add"
]
},
"main": "./bin/cli.js",
"name": "webpack-cli",
"nyc": {
"include": [
"bin/**.js",
"packages/**/*.js"
],
"reporter": [
"lcov"
],
"all": true
},
"peerDependencies": {
"webpack": "4.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack/webpack-cli.git"
},
"scripts": {
"bootstrap": "npm run clean:all && npm install && lerna bootstrap",
"build": "tsc",
"changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile CHANGELOG.md --same-file",
"clean:all": "rimraf node_modules packages/*/{node_modules}",
"format": "npm run format:js && npm run format:ts",
"format:js": "prettier-eslint ./bin/*.js ./bin/**/*.js ./test/**/*.js ./packages/**/**/*.js ./packages/**/*.js --write",
"format:ts": "prettier-eslint ./packages/**/**/*.ts ./packages/**/*.ts ./packages/**/**/**/*.ts --write",
"lint": "eslint \"./bin/*.js\" \"./bin/**/*.js\" \"./test/**/*.js\" \"packages/**/!(node_modules)/*.ts\" \"packages/**/!(node_modules)/**/*.ts\"",
"pretest": "npm run build && npm run lint",
"publish:monorepo": "npm run format && npm run test && lerna publish -m \"chore: monorepo version update\"",
"reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov",
"test": "nyc jest --maxWorkers=4 --reporters=default --reporters=jest-junit",
"test:ci": "nyc jest --maxWorkers=$(nproc) --reporters=default --reporters=jest-junit",
"test:cli": "nyc jest test/ --maxWorkers=4 --reporters=default --reporters=jest-junit",
"test:packages": "nyc jest packages/ --maxWorkers=4 --reporters=default --reporters=jest-junit",
"travis:integration": "npm run build && npm run test && npm run reportCoverage",
"travis:lint": "npm run build && npm run lint",
"watch": "npm run build && tsc -w"
},
"version": "3.3.12"
}
}