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:
Diffstat (limited to 'node_modules/npm-packlist/package.json')
-rw-r--r--node_modules/npm-packlist/package.json78
1 files changed, 21 insertions, 57 deletions
diff --git a/node_modules/npm-packlist/package.json b/node_modules/npm-packlist/package.json
index 3237f820d..0c23b633e 100644
--- a/node_modules/npm-packlist/package.json
+++ b/node_modules/npm-packlist/package.json
@@ -1,77 +1,38 @@
{
- "_from": "npm-packlist@^2.1.0",
- "_id": "npm-packlist@2.1.2",
- "_inBundle": false,
- "_integrity": "sha512-eByPaP+wsKai0BJX5pmb58d3mfR0zUATcnyuvSxIudTEn+swCPFLxh7srCmqB4hr7i9V24/DPjjq5b2qUtbgXQ==",
- "_location": "/npm-packlist",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "npm-packlist@^2.1.0",
- "name": "npm-packlist",
- "escapedName": "npm-packlist",
- "rawSpec": "^2.1.0",
- "saveSpec": null,
- "fetchSpec": "^2.1.0"
- },
- "_requiredBy": [
- "/",
- "/pacote"
- ],
- "_resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.2.tgz",
- "_shasum": "a3045b52aefc37e7a5e86a55e6ca8cb1e909e25a",
- "_spec": "npm-packlist@^2.1.0",
- "_where": "/Users/isaacs/dev/npm/cli",
- "author": {
- "name": "Isaac Z. Schlueter",
- "email": "i@izs.me",
- "url": "http://blog.izs.me/"
- },
- "bin": {
- "npm-packlist": "bin/index.js"
- },
- "bugs": {
- "url": "https://github.com/npm/npm-packlist/issues"
+ "name": "npm-packlist",
+ "version": "2.1.2",
+ "description": "Get a list of the files to add from a folder into an npm package",
+ "directories": {
+ "test": "test"
},
- "bundleDependencies": false,
+ "main": "index.js",
"dependencies": {
"glob": "^7.1.6",
"ignore-walk": "^3.0.3",
"npm-bundled": "^1.1.1",
"npm-normalize-package-bin": "^1.0.1"
},
- "deprecated": false,
- "description": "Get a list of the files to add from a folder into an npm package",
+ "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
+ "license": "ISC",
+ "files": [
+ "index.js"
+ ],
"devDependencies": {
"mutate-fs": "^2.1.1",
"require-inject": "^1.4.4",
"tap": "^14.10.7"
},
- "directories": {
- "test": "test"
- },
- "engines": {
- "node": ">=10"
+ "scripts": {
+ "test": "tap",
+ "snap": "tap",
+ "preversion": "npm test",
+ "postversion": "npm publish",
+ "postpublish": "git push origin --follow-tags"
},
- "files": [
- "index.js"
- ],
- "homepage": "https://github.com/npm/npm-packlist#readme",
- "license": "ISC",
- "main": "index.js",
- "name": "npm-packlist",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/npm-packlist.git"
},
- "scripts": {
- "postpublish": "git push origin --follow-tags",
- "postversion": "npm publish",
- "preversion": "npm test",
- "snap": "tap",
- "test": "tap"
- },
"tap": {
"check-coverage": true,
"nyc-arg": [
@@ -79,5 +40,8 @@
"--include=bin/index.js"
]
},
- "version": "2.1.2"
+ "bin": "bin/index.js",
+ "engines": {
+ "node": ">=10"
+ }
}