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:
authorForrest L Norvell <forrest@npmjs.com>2015-10-15 08:17:03 +0300
committerRebecca Turner <me@re-becca.org>2015-10-16 01:25:33 +0300
commit25a234b4595ee3f1a2c09e2a39e3c238aa642557 (patch)
treedef772e3c15c7bd3d0b05eeeb6069898617cbf23 /node_modules/inherits
parent4cd74b0cdc639081fcf292eb9a03dbd93451c7c0 (diff)
src: install npm@3 with npm@2
Restore the ability to do one-shot upgrades from the versions of npm bundled with Node 0.8 to npm@3, which simplifies using Travis with old Node and new npm, for compatibility testing purposes. Older versions of npm repack packages on install, which works poorly with the way npm@3 handles bundledDependencies with flat trees. Fixes: #9668 PR-URL: https://github.com/npm/npm/pull/9981
Diffstat (limited to 'node_modules/inherits')
-rw-r--r--node_modules/inherits/package.json92
1 files changed, 20 insertions, 72 deletions
diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json
index 9407a1962..933382a7f 100644
--- a/node_modules/inherits/package.json
+++ b/node_modules/inherits/package.json
@@ -1,87 +1,35 @@
{
- "_args": [
- [
- "inherits@~2.0.1",
- "/Users/rebecca/code/npm"
- ]
- ],
- "_from": "inherits@>=2.0.1 <2.1.0",
- "_id": "inherits@2.0.1",
- "_inCache": true,
- "_location": "/inherits",
- "_npmUser": {
- "email": "i@izs.me",
- "name": "isaacs"
- },
- "_npmVersion": "1.3.8",
- "_phantomChildren": {},
- "_requested": {
- "name": "inherits",
- "raw": "inherits@~2.0.1",
- "rawSpec": "~2.0.1",
- "scope": null,
- "spec": ">=2.0.1 <2.1.0",
- "type": "range"
- },
- "_requiredBy": [
- "/",
- "/bl/readable-stream",
- "/block-stream",
- "/concat-stream",
- "/concat-stream/readable-stream",
- "/fstream",
- "/fstream-ignore",
- "/fstream-npm",
- "/glob",
- "/node-gyp/glob",
- "/node-gyp/tar",
- "/readable-stream",
- "/rimraf/glob",
- "/tar"
- ],
- "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
- "_shasum": "b17d08d326b4423e568eff719f91b0b1cbdf69f1",
- "_shrinkwrap": null,
- "_spec": "inherits@~2.0.1",
- "_where": "/Users/rebecca/code/npm",
- "browser": "./inherits_browser.js",
- "bugs": {
- "url": "https://github.com/isaacs/inherits/issues"
- },
- "dependencies": {},
+ "name": "inherits",
"description": "Browser-friendly inheritance fully compatible with standard node.js inherits()",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "b17d08d326b4423e568eff719f91b0b1cbdf69f1",
- "tarball": "http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
- },
+ "version": "2.0.1",
"keywords": [
- "browser",
- "browserify",
- "class",
"inheritance",
- "inherits",
+ "class",
"klass",
+ "oop",
"object-oriented",
- "oop"
+ "inherits",
+ "browser",
+ "browserify"
],
- "license": "ISC",
"main": "./inherits.js",
- "maintainers": [
- {
- "name": "isaacs",
- "email": "i@izs.me"
- }
- ],
- "name": "inherits",
- "optionalDependencies": {},
+ "browser": "./inherits_browser.js",
"repository": {
"type": "git",
- "url": "git://github.com/isaacs/inherits"
+ "url": "git://github.com/isaacs/inherits.git"
},
+ "license": "ISC",
"scripts": {
"test": "node test"
},
- "version": "2.0.1"
+ "readme": "Browser-friendly inheritance fully compatible with standard node.js\n[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor).\n\nThis package exports standard `inherits` from node.js `util` module in\nnode environment, but also provides alternative browser-friendly\nimplementation through [browser\nfield](https://gist.github.com/shtylman/4339901). Alternative\nimplementation is a literal copy of standard one located in standalone\nmodule to avoid requiring of `util`. It also has a shim for old\nbrowsers with no `Object.create` support.\n\nWhile keeping you sure you are using standard `inherits`\nimplementation in node.js environment, it allows bundlers such as\n[browserify](https://github.com/substack/node-browserify) to not\ninclude full `util` package to your client code if all you need is\njust `inherits` function. It worth, because browser shim for `util`\npackage is large and `inherits` is often the single function you need\nfrom it.\n\nIt's recommended to use this package instead of\n`require('util').inherits` for any code that has chances to be used\nnot only in node.js but in browser too.\n\n## usage\n\n```js\nvar inherits = require('inherits');\n// then use exactly as the standard one\n```\n\n## note on version ~1.0\n\nVersion ~1.0 had completely different motivation and is not compatible\nneither with 2.0 nor with standard node.js `inherits`.\n\nIf you are using version ~1.0 and planning to switch to ~2.0, be\ncareful:\n\n* new version uses `super_` instead of `super` for referencing\n superclass\n* new version overwrites current prototype while old one preserves any\n existing fields on it\n",
+ "readmeFilename": "README.md",
+ "bugs": {
+ "url": "https://github.com/isaacs/inherits/issues"
+ },
+ "homepage": "https://github.com/isaacs/inherits#readme",
+ "_id": "inherits@2.0.1",
+ "_shasum": "b17d08d326b4423e568eff719f91b0b1cbdf69f1",
+ "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "_from": "inherits@>=2.0.1 <2.1.0"
}