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/request/package.json')
-rw-r--r--node_modules/request/package.json94
1 files changed, 30 insertions, 64 deletions
diff --git a/node_modules/request/package.json b/node_modules/request/package.json
index 958703288..cbb2f2ede 100644
--- a/node_modules/request/package.json
+++ b/node_modules/request/package.json
@@ -1,40 +1,31 @@
{
- "_from": "request@^2.88.0",
- "_id": "request@2.88.2",
- "_inBundle": false,
- "_integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
- "_location": "/request",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "request@^2.88.0",
- "name": "request",
- "escapedName": "request",
- "rawSpec": "^2.88.0",
- "saveSpec": null,
- "fetchSpec": "^2.88.0"
- },
- "_requiredBy": [
- "/",
- "/cloudant-follow",
- "/couchapp",
- "/coveralls",
- "/nano",
- "/node-gyp"
+ "name": "request",
+ "description": "Simplified HTTP request client.",
+ "keywords": [
+ "http",
+ "simple",
+ "util",
+ "utility"
],
- "_resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
- "_shasum": "d73c918731cb5a87da047e207234146f664d12b3",
- "_spec": "request@^2.88.0",
- "_where": "/Users/isaacs/dev/npm/cli",
- "author": {
- "name": "Mikeal Rogers",
- "email": "mikeal.rogers@gmail.com"
+ "version": "2.88.2",
+ "author": "Mikeal Rogers <mikeal.rogers@gmail.com>",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/request/request.git"
},
"bugs": {
"url": "http://github.com/request/request/issues"
},
- "bundleDependencies": false,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 6"
+ },
+ "main": "index.js",
+ "files": [
+ "lib/",
+ "index.js",
+ "request.js"
+ ],
"dependencies": {
"aws-sign2": "~0.7.0",
"aws4": "^1.8.0",
@@ -57,8 +48,13 @@
"tunnel-agent": "^0.6.0",
"uuid": "^3.3.2"
},
- "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
- "description": "Simplified HTTP request client.",
+ "scripts": {
+ "test": "npm run lint && npm run test-ci && npm run test-browser",
+ "test-ci": "taper tests/test-*.js",
+ "test-cov": "nyc --reporter=lcov tape tests/test-*.js",
+ "test-browser": "node tests/browser/start.js",
+ "lint": "standard"
+ },
"devDependencies": {
"bluebird": "^3.2.1",
"browserify": "^13.0.1",
@@ -81,40 +77,10 @@
"tape": "^4.6.0",
"taper": "^0.5.0"
},
- "engines": {
- "node": ">= 6"
- },
- "files": [
- "lib/",
- "index.js",
- "request.js"
- ],
"greenkeeper": {
"ignore": [
"hawk",
"har-validator"
]
- },
- "homepage": "https://github.com/request/request#readme",
- "keywords": [
- "http",
- "simple",
- "util",
- "utility"
- ],
- "license": "Apache-2.0",
- "main": "index.js",
- "name": "request",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/request/request.git"
- },
- "scripts": {
- "lint": "standard",
- "test": "npm run lint && npm run test-ci && npm run test-browser",
- "test-browser": "node tests/browser/start.js",
- "test-ci": "taper tests/test-*.js",
- "test-cov": "nyc --reporter=lcov tape tests/test-*.js"
- },
- "version": "2.88.2"
+ }
}