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>2015-09-24 02:12:19 +0300
committerRebecca Turner <me@re-becca.org>2015-09-25 01:53:13 +0300
commit963295c8a0c89b7b80780cbb7c1e2678ec7736db (patch)
tree5b27eda601c9eb92036faad94e3fea40c4145069 /node_modules/npm-install-checks
parentf3fd722d9fcafe4c58964a7301f02763491ed8e4 (diff)
npm-install-checks@2.0.1
Diffstat (limited to 'node_modules/npm-install-checks')
-rw-r--r--node_modules/npm-install-checks/package.json35
-rw-r--r--node_modules/npm-install-checks/test/check-engine.js6
2 files changed, 21 insertions, 20 deletions
diff --git a/node_modules/npm-install-checks/package.json b/node_modules/npm-install-checks/package.json
index b6b91971e..a207b2b94 100644
--- a/node_modules/npm-install-checks/package.json
+++ b/node_modules/npm-install-checks/package.json
@@ -1,35 +1,35 @@
{
"_args": [
[
- "npm-install-checks@2.0.0",
+ "npm-install-checks@~2.0.0",
"/Users/rebecca/code/npm"
]
],
- "_from": "npm-install-checks@2.0.0",
- "_id": "npm-install-checks@2.0.0",
+ "_from": "npm-install-checks@>=2.0.0 <2.1.0",
+ "_id": "npm-install-checks@2.0.1",
"_inCache": true,
"_location": "/npm-install-checks",
- "_nodeVersion": "0.10.40",
+ "_nodeVersion": "4.0.0",
"_npmUser": {
- "email": "ogd@aoaioxxysz.net",
- "name": "othiym23"
+ "email": "me@re-becca.org",
+ "name": "iarna"
},
- "_npmVersion": "3.1.2",
+ "_npmVersion": "3.3.4",
"_phantomChildren": {},
"_requested": {
"name": "npm-install-checks",
- "raw": "npm-install-checks@2.0.0",
- "rawSpec": "2.0.0",
+ "raw": "npm-install-checks@~2.0.0",
+ "rawSpec": "~2.0.0",
"scope": null,
- "spec": "2.0.0",
- "type": "version"
+ "spec": ">=2.0.0 <2.1.0",
+ "type": "range"
},
"_requiredBy": [
"/"
],
- "_shasum": "2a517f34f47e1e4aff9432fd62b6debdca150085",
+ "_shasum": "a93540b53f04fa9d916d2733d6541f6db7d88e46",
"_shrinkwrap": null,
- "_spec": "npm-install-checks@2.0.0",
+ "_spec": "npm-install-checks@~2.0.0",
"_where": "/Users/rebecca/code/npm",
"author": {
"email": "rok@kowalski.gd",
@@ -50,11 +50,12 @@
},
"directories": {},
"dist": {
- "shasum": "2a517f34f47e1e4aff9432fd62b6debdca150085",
- "tarball": "http://registry.npmjs.org/npm-install-checks/-/npm-install-checks-2.0.0.tgz"
+ "shasum": "a93540b53f04fa9d916d2733d6541f6db7d88e46",
+ "tarball": "http://registry.npmjs.org/npm-install-checks/-/npm-install-checks-2.0.1.tgz"
},
- "gitHead": "7027d5f40bcca73479a7d85dc00cbdb7d53d7e8a",
+ "gitHead": "1e9474f30490cd7621e976e91fa611d35e644f64",
"homepage": "https://github.com/npm/npm-install-checks",
+ "installable": true,
"keywords": [
"install",
"npm,"
@@ -88,5 +89,5 @@
"scripts": {
"test": "tap test/*.js"
},
- "version": "2.0.0"
+ "version": "2.0.1"
}
diff --git a/node_modules/npm-install-checks/test/check-engine.js b/node_modules/npm-install-checks/test/check-engine.js
index 9b4373667..c89ec5398 100644
--- a/node_modules/npm-install-checks/test/check-engine.js
+++ b/node_modules/npm-install-checks/test/check-engine.js
@@ -18,10 +18,10 @@ test("node version too old", function (t) {
})
test("npm version too old", function (t) {
- var target = { engines: { npm: "1.3.6" }}
- c(target, "1.4.2", "0.2.1", false, true, function (err) {
+ var target = { engines: { npm: "^1.4.6" }}
+ c(target, "1.3.2", "0.2.1", false, true, function (err) {
t.ok(err, "returns an error")
- t.equals(err.required.npm, "1.3.6")
+ t.equals(err.required.npm, "^1.4.6")
t.end()
})
})