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>2014-09-11 11:24:01 +0400
committerisaacs <i@izs.me>2014-09-11 11:24:01 +0400
commit6e6a5fb74af10fd345411df4e121e554e2e3f33e (patch)
treec719295a0484c1fa4e3b059c0b9b283e07657989 /node_modules/npm-package-arg/package.json
parentd1ee7aa39182a505786155bb9a39f9af4e8a6d07 (diff)
Bump all semver dependents in preparation for semver@4.x's arrival
Diffstat (limited to 'node_modules/npm-package-arg/package.json')
-rw-r--r--node_modules/npm-package-arg/package.json34
1 files changed, 26 insertions, 8 deletions
diff --git a/node_modules/npm-package-arg/package.json b/node_modules/npm-package-arg/package.json
index b887ee7bf..bbd91995b 100644
--- a/node_modules/npm-package-arg/package.json
+++ b/node_modules/npm-package-arg/package.json
@@ -1,13 +1,13 @@
{
"name": "npm-package-arg",
- "version": "2.1.0",
+ "version": "2.1.1",
"description": "Parse the things that can be arguments to `npm install`",
"main": "npa.js",
"directories": {
"test": "test"
},
"dependencies": {
- "semver": "^2.3.0 || 3.x"
+ "semver": "^2.3.0 || 3.x || 4"
},
"devDependencies": {
"tap": "^0.4.9"
@@ -29,10 +29,28 @@
"url": "https://github.com/npm/npm-package-arg/issues"
},
"homepage": "https://github.com/npm/npm-package-arg",
- "readme": "# npm-package-arg\n\nParse the things that can be arguments to `npm install`\n\nTakes an argument like `foo@1.2`, or `foo@user/foo`, or\n`http://x.com/foo.tgz`, or `git+https://github.com/user/foo`, and\nfigures out what type of thing it is.\n\n## USAGE\n\n```javascript\nvar assert = require(\"assert\")\nvar npa = require(\"npm-package-arg\")\n\n// Pass in the descriptor, and it'll return an object\nvar parsed = npa(\"foo@1.2\")\n\n// Returns an object like:\n// {\n// name: \"foo\", // The bit in front of the @\n// type: \"range\", // the type of descriptor this is\n// spec: \"1.2\" // the specifier for this descriptor\n// }\n\n// Completely unreasonable invalid garbage throws an error\n// Make sure you wrap this in a try/catch if you have not\n// already sanitized the inputs!\nassert.throws(function() {\n npa(\"this is not \\0 a valid package name or url\")\n})\n```\n\nFor more examples, see the test file.\n\n## Result Objects\n\nThe objects that are returned by npm-package-arg contain the following\nfields:\n\n* `name` - If known, the `name` field expected in the resulting pkg.\n* `type` - One of the following strings:\n * `git` - A git repo\n * `github` - A github shorthand, like `user/project`\n * `tag` - A tagged version, like `\"foo@latest\"`\n * `version` - A specific version number, like `\"foo@1.2.3\"`\n * `range` - A version range, like `\"foo@2.x\"`\n * `local` - A local file or folder path\n * `remote` - An http url (presumably to a tgz)\n* `spec` - The \"thing\". URL, the range, git repo, etc.\n* `raw` - The original un-modified string that was provided.\n* `rawSpec` - The part after the `name@...`, as it was originally\n provided.\n* `scope` - If a name is something like `@org/module` then the `scope`\n field will be set to `org`. If it doesn't have a scoped name, then\n scope is `null`.\n",
- "readmeFilename": "README.md",
- "gitHead": "9e46839145b953ee14ad489958c6466e59c4a874",
- "_id": "npm-package-arg@2.1.0",
- "_shasum": "ed0c544e2fb07403491edb3bb85aca995f0454fa",
- "_from": "npm-package-arg@>=2.1.0-0 <3.0.0-0"
+ "gitHead": "d0098822ba9212d12cf78578973a83903d4c4f4c",
+ "_id": "npm-package-arg@2.1.1",
+ "_shasum": "05cd158bd581be9588b588d0937ebfe649ff04cd",
+ "_from": "npm-package-arg@>=2.1.0-0 <2.2.0-0",
+ "_npmVersion": "2.0.0-beta.3",
+ "_npmUser": {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ },
+ "maintainers": [
+ {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ },
+ {
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
+ }
+ ],
+ "dist": {
+ "shasum": "05cd158bd581be9588b588d0937ebfe649ff04cd",
+ "tarball": "http://registry.npmjs.org/npm-package-arg/-/npm-package-arg-2.1.1.tgz"
+ },
+ "_resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-2.1.1.tgz"
}