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:
authorRebecca Turner <me@re-becca.org>2017-04-21 00:49:10 +0300
committerRebecca Turner <me@re-becca.org>2017-04-21 01:53:40 +0300
commitc46ad71bbe27aaa9ee10e107d8bcd665d98544d7 (patch)
tree833c9cab7b37bc84fdace3e07c22b1f7316ce989 /node_modules
parentebde4ea3363dfc154c53bd537189503863c9b3a4 (diff)
init-package-json@1.9.6
Allows installation with npm-package-arg@5. Credit: @iarna
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/init-package-json/package.json53
1 files changed, 27 insertions, 26 deletions
diff --git a/node_modules/init-package-json/package.json b/node_modules/init-package-json/package.json
index 4377a372d..cf4adb461 100644
--- a/node_modules/init-package-json/package.json
+++ b/node_modules/init-package-json/package.json
@@ -2,52 +2,52 @@
"_args": [
[
{
- "raw": "init-package-json@latest",
+ "raw": "init-package-json@1.9.6",
"scope": null,
"escapedName": "init-package-json",
"name": "init-package-json",
- "rawSpec": "latest",
- "spec": "latest",
- "type": "tag"
+ "rawSpec": "1.9.6",
+ "spec": "1.9.6",
+ "type": "version"
},
- "/Users/zkat/Documents/code/npm"
+ "/Users/rebecca/code/npm"
]
],
- "_from": "init-package-json@latest",
- "_id": "init-package-json@1.9.5",
+ "_from": "init-package-json@1.9.6",
+ "_id": "init-package-json@1.9.6",
"_inCache": true,
"_location": "/init-package-json",
- "_nodeVersion": "7.7.1",
+ "_nodeVersion": "7.7.4",
"_npmOperationalInternal": {
"host": "packages-18-east.internal.npmjs.com",
- "tmp": "tmp/init-package-json-1.9.5.tgz_1488924630483_0.1780379111878574"
+ "tmp": "tmp/init-package-json-1.9.6.tgz_1492135231749_0.8497632052749395"
},
"_npmUser": {
- "name": "zkat",
- "email": "kat@sykosomatic.org"
+ "name": "iarna",
+ "email": "me@re-becca.org"
},
- "_npmVersion": "4.1.2",
+ "_npmVersion": "4.5.0",
"_phantomChildren": {
"read": "1.0.7"
},
"_requested": {
- "raw": "init-package-json@latest",
+ "raw": "init-package-json@1.9.6",
"scope": null,
"escapedName": "init-package-json",
"name": "init-package-json",
- "rawSpec": "latest",
- "spec": "latest",
- "type": "tag"
+ "rawSpec": "1.9.6",
+ "spec": "1.9.6",
+ "type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
- "_resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.5.tgz",
- "_shasum": "7d4d64a264dc76c1f1f557cbbe824978bf10cd09",
+ "_resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.6.tgz",
+ "_shasum": "789fc2b74466a4952b9ea77c0575bc78ebd60a61",
"_shrinkwrap": null,
- "_spec": "init-package-json@latest",
- "_where": "/Users/zkat/Documents/code/npm",
+ "_spec": "init-package-json@1.9.6",
+ "_where": "/Users/rebecca/code/npm",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
@@ -58,7 +58,7 @@
},
"dependencies": {
"glob": "^7.1.1",
- "npm-package-arg": "^4.0.0",
+ "npm-package-arg": "^4.0.0 || ^5.0.0",
"promzard": "^0.3.0",
"read": "~1.0.1",
"read-package-json": "1 || 2",
@@ -75,10 +75,10 @@
},
"directories": {},
"dist": {
- "shasum": "7d4d64a264dc76c1f1f557cbbe824978bf10cd09",
- "tarball": "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.5.tgz"
+ "shasum": "789fc2b74466a4952b9ea77c0575bc78ebd60a61",
+ "tarball": "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.6.tgz"
},
- "gitHead": "d83eb6cb36d17c6938b9f7a58ae6566f1c8fc869",
+ "gitHead": "bcc338ef166aee58fc843c52b5225363d4668bf2",
"homepage": "https://github.com/npm/init-package-json#readme",
"keywords": [
"init",
@@ -112,7 +112,8 @@
],
"name": "init-package-json",
"optionalDependencies": {},
- "readme": "ERROR: No README data found!",
+ "readme": "# init-package-json\n\nA node module to get your node module started.\n\n[![Build Status](https://secure.travis-ci.org/npm/init-package-json.svg)](http://travis-ci.org/npm/init-package-json)\n\n## Usage\n\n```javascript\nvar init = require('init-package-json')\nvar path = require('path')\n\n// a path to a promzard module. In the event that this file is\n// not found, one will be provided for you.\nvar initFile = path.resolve(process.env.HOME, '.npm-init')\n\n// the dir where we're doin stuff.\nvar dir = process.cwd()\n\n// extra stuff that gets put into the PromZard module's context.\n// In npm, this is the resolved config object. Exposed as 'config'\n// Optional.\nvar configData = { some: 'extra stuff' }\n\n// Any existing stuff from the package.json file is also exposed in the\n// PromZard module as the `package` object. There will also be free\n// vars for:\n// * `filename` path to the package.json file\n// * `basename` the tip of the package dir\n// * `dirname` the parent of the package dir\n\ninit(dir, initFile, configData, function (er, data) {\n // the data's already been written to {dir}/package.json\n // now you can do stuff with it\n})\n```\n\nOr from the command line:\n\n```\n$ npm-init\n```\n\nSee [PromZard](https://github.com/npm/promzard) for details about\nwhat can go in the config file.\n",
+ "readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/npm/init-package-json.git"
@@ -120,5 +121,5 @@
"scripts": {
"test": "tap test/*.js"
},
- "version": "1.9.5"
+ "version": "1.9.6"
}