-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
177 additions
and
175 deletions.
There are no files selected for viewing
55 changes: 0 additions & 55 deletions
55
node_modules/init-package-json/node_modules/read-package-json/package.json
This file was deleted.
Oops, something went wrong.
File renamed without changes.
46 changes: 46 additions & 0 deletions
46
node_modules/pacote/node_modules/read-package-json/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]> (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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]> (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" | ||
} | ||
} |
Oops, something went wrong.