Skip to content

Commit

Permalink
deps: read-package-json@5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored and nlf committed Mar 15, 2022
1 parent 915dda7 commit f2ec2ef
Show file tree
Hide file tree
Showing 25 changed files with 177 additions and 175 deletions.

This file was deleted.

46 changes: 46 additions & 0 deletions node_modules/pacote/node_modules/read-package-json/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "read-package-json",
"version": "4.1.2",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"description": "The thing npm uses to read package.json files with semantics and defaults and validation",
"repository": {
"type": "git",
"url": "https://github.com/npm/read-package-json.git"
},
"main": "read-json.js",
"scripts": {
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"release": "standard-version -s",
"test": "tap --nyc-arg=--all --coverage test/*.js",
"npmclilint": "npmcli-lint",
"lint": "npm run npmclilint -- --ignore-pattern test/fixtures \"*.*js\" \"test/**/*.*js\"",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint --",
"postsnap": "npm run lintfix --"
},
"dependencies": {
"glob": "^7.1.1",
"json-parse-even-better-errors": "^2.3.0",
"normalize-package-data": "^3.0.0",
"npm-normalize-package-bin": "^1.0.0"
},
"devDependencies": {
"@npmcli/lint": "^1.0.2",
"standard-version": "^9.3.1",
"tap": "^15.0.9"
},
"license": "ISC",
"files": [
"read-json.js"
],
"engines": {
"node": ">=10"
},
"tap": {
"branches": 68,
"functions": 83,
"lines": 76,
"statements": 77
}
}
File renamed without changes.
39 changes: 24 additions & 15 deletions node_modules/read-package-json/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,55 @@
{
"name": "read-package-json",
"version": "4.1.2",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"version": "5.0.0",
"author": "GitHub Inc.",
"description": "The thing npm uses to read package.json files with semantics and defaults and validation",
"repository": {
"type": "git",
"url": "https://github.com/npm/read-package-json.git"
},
"main": "read-json.js",
"main": "lib/read-json.js",
"scripts": {
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"release": "standard-version -s",
"test": "tap --nyc-arg=--all --coverage test/*.js",
"test": "tap",
"npmclilint": "npmcli-lint",
"lint": "npm run npmclilint -- --ignore-pattern test/fixtures \"*.*js\" \"test/**/*.*js\"",
"lint": "eslint '**/*.js'",
"lintfix": "npm run lint -- --fix",
"posttest": "npm run lint --",
"postsnap": "npm run lintfix --"
"posttest": "npm run lint",
"postsnap": "npm run lintfix --",
"postlint": "npm-template-check",
"template-copy": "npm-template-copy --force",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"snap": "tap"
},
"dependencies": {
"glob": "^7.1.1",
"json-parse-even-better-errors": "^2.3.0",
"normalize-package-data": "^3.0.0",
"npm-normalize-package-bin": "^1.0.0"
"glob": "^7.2.0",
"json-parse-even-better-errors": "^2.3.1",
"normalize-package-data": "^4.0.0",
"npm-normalize-package-bin": "^1.0.1"
},
"devDependencies": {
"@npmcli/lint": "^1.0.2",
"standard-version": "^9.3.1",
"@npmcli/template-oss": "^2.9.2",
"tap": "^15.0.9"
},
"license": "ISC",
"files": [
"read-json.js"
"bin",
"lib"
],
"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16"
},
"tap": {
"branches": 68,
"functions": 83,
"lines": 76,
"statements": 77
},
"templateOSS": {
"version": "2.9.2"
}
}
Loading

0 comments on commit f2ec2ef

Please sign in to comment.