Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-07-24 22:55:18 +0300
committerisaacs <i@izs.me>2020-07-29 21:55:03 +0300
commit53ed7e5205a3f4d5d33828ff9dc11c093f482f7b (patch)
treed76317be79432c9527e8fb37d4c13e0719cdbaf9 /node_modules/libnpmpublish
parentbbe4279120c94791b70d97f235c73d972fd67354 (diff)
reset deps using npm v7
First self-install!
Diffstat (limited to 'node_modules/libnpmpublish')
-rw-r--r--node_modules/libnpmpublish/package.json102
1 files changed, 33 insertions, 69 deletions
diff --git a/node_modules/libnpmpublish/package.json b/node_modules/libnpmpublish/package.json
index 239efcdb8..16236da75 100644
--- a/node_modules/libnpmpublish/package.json
+++ b/node_modules/libnpmpublish/package.json
@@ -1,45 +1,39 @@
{
- "_from": "libnpmpublish@^3.0.1",
- "_id": "libnpmpublish@3.0.1",
- "_inBundle": false,
- "_integrity": "sha512-gpd+Ql3cA73MMN8tZa1ao/bfF2/An+B3JtP7SDbJTRrfwre9C/ZZZ4+ejtqBSopnLXlWujr2MVVE4FY1S+jlFg==",
- "_location": "/libnpmpublish",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "libnpmpublish@^3.0.1",
- "name": "libnpmpublish",
- "escapedName": "libnpmpublish",
- "rawSpec": "^3.0.1",
- "saveSpec": null,
- "fetchSpec": "^3.0.1"
- },
- "_requiredBy": [
- "/"
+ "name": "libnpmpublish",
+ "version": "3.0.1",
+ "description": "Programmatic API for the bits behind npm publish and unpublish",
+ "author": "npm Inc. <support@npmjs.com>",
+ "contributors": [
+ "Kat Marchán <kzm@zkat.tech>",
+ "Claudia Hernández <claudia@npmjs.com>"
+ ],
+ "main": "index.js",
+ "files": [
+ "*.js"
],
- "_resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-3.0.1.tgz",
- "_shasum": "f7b3094b24a68edf9a044780dc4b4158c45e774b",
- "_spec": "libnpmpublish@^3.0.1",
- "_where": "/Users/isaacs/dev/npm/cli",
- "author": {
- "name": "npm Inc.",
- "email": "support@npmjs.com"
+ "license": "ISC",
+ "scripts": {
+ "preversion": "npm test",
+ "postversion": "npm publish",
+ "prepublishOnly": "git push origin --follow-tags",
+ "lint": "standard",
+ "test": "tap",
+ "posttest": "npm run lint"
},
- "bugs": {
- "url": "https://github.com/npm/libnpmpublish/issues"
+ "tap": {
+ "check-coverage": true
},
- "bundleDependencies": false,
- "contributors": [
- {
- "name": "Kat Marchán",
- "email": "kzm@zkat.tech"
- },
- {
- "name": "Claudia Hernández",
- "email": "claudia@npmjs.com"
- }
- ],
+ "devDependencies": {
+ "nock": "^12.0.2",
+ "standard": "^14.3.1",
+ "tap": "^14.10.6"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/npm/libnpmpublish.git"
+ },
+ "bugs": "https://github.com/npm/libnpmpublish/issues",
+ "homepage": "https://npmjs.com/package/libnpmpublish",
"dependencies": {
"libnpmpack": "^2.0.0",
"lodash.clonedeep": "^4.5.0",
@@ -49,37 +43,7 @@
"semver": "^7.1.3",
"ssri": "^8.0.0"
},
- "deprecated": false,
- "description": "Programmatic API for the bits behind npm publish and unpublish",
- "devDependencies": {
- "nock": "^12.0.2",
- "standard": "^14.3.1",
- "tap": "^14.10.6"
- },
"engines": {
"node": ">=10"
- },
- "files": [
- "*.js"
- ],
- "homepage": "https://npmjs.com/package/libnpmpublish",
- "license": "ISC",
- "main": "index.js",
- "name": "libnpmpublish",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/npm/libnpmpublish.git"
- },
- "scripts": {
- "lint": "standard",
- "posttest": "npm run lint",
- "postversion": "npm publish",
- "prepublishOnly": "git push origin --follow-tags",
- "preversion": "npm test",
- "test": "tap"
- },
- "tap": {
- "check-coverage": true
- },
- "version": "3.0.1"
+ }
}