-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ignore integrity values for git dependencies (#4468)
This updates pacote@13.0.3 and @npmcli/run-script@3.0.0
- Loading branch information
1 parent
6b68c1a
commit c608512
Showing
16 changed files
with
115 additions
and
84 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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,45 +1,51 @@ | ||
{ | ||
"name": "@npmcli/run-script", | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"description": "Run a lifecycle script for a package (descendant of npm-lifecycle)", | ||
"author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)", | ||
"author": "GitHub Inc.", | ||
"license": "ISC", | ||
"scripts": { | ||
"test": "tap", | ||
"preversion": "npm test", | ||
"postversion": "npm publish", | ||
"prepublishOnly": "git push origin --follow-tags", | ||
"eslint": "eslint", | ||
"lint": "npm run eslint -- \"lib/**/*.js\"", | ||
"lintfix": "npm run lint -- --fix" | ||
"lint": "eslint '**/*.js'", | ||
"lintfix": "npm run lint -- --fix", | ||
"postlint": "npm-template-check", | ||
"template-copy": "npm-template-copy --force", | ||
"snap": "tap", | ||
"posttest": "npm run lint" | ||
}, | ||
"tap": { | ||
"check-coverage": true, | ||
"coverage-map": "map.js" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^7.19.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^5.0.0", | ||
"minipass": "^3.1.1", | ||
"@npmcli/template-oss": "^2.7.1", | ||
"minipass": "^3.1.6", | ||
"require-inject": "^1.4.4", | ||
"tap": "^15.0.4" | ||
}, | ||
"dependencies": { | ||
"@npmcli/node-gyp": "^1.0.2", | ||
"@npmcli/node-gyp": "^1.0.3", | ||
"@npmcli/promise-spawn": "^1.3.2", | ||
"node-gyp": "^8.2.0", | ||
"read-package-json-fast": "^2.0.1" | ||
"node-gyp": "^8.4.1", | ||
"read-package-json-fast": "^2.0.3" | ||
}, | ||
"files": [ | ||
"lib/**/*.js", | ||
"lib/node-gyp-bin" | ||
"bin", | ||
"lib" | ||
], | ||
"main": "lib/run-script.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/npm/run-script.git" | ||
}, | ||
"engines": { | ||
"node": "^12.13.0 || ^14.15.0 || >=16" | ||
}, | ||
"templateOSS": { | ||
"version": "2.7.1" | ||
} | ||
} |
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
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
Oops, something went wrong.