Initial commit
This commit is contained in:
15
node_modules/request-promise-native/LICENSE
generated
vendored
Normal file
15
node_modules/request-promise-native/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
ISC License
|
||||
|
||||
Copyright (c) 2017, Nicolai Kamenzky and contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
3
node_modules/request-promise-native/errors.js
generated
vendored
Normal file
3
node_modules/request-promise-native/errors.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = require('request-promise-core/errors');
|
||||
26
node_modules/request-promise-native/lib/rp.js
generated
vendored
Normal file
26
node_modules/request-promise-native/lib/rp.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
var configure = require('request-promise-core/configure/request2'),
|
||||
stealthyRequire = require('stealthy-require');
|
||||
|
||||
// Load Request freshly - so that users can require an unaltered request instance!
|
||||
var request = stealthyRequire(require.cache, function () {
|
||||
return require('request');
|
||||
},
|
||||
function () {
|
||||
require('tough-cookie');
|
||||
}, module);
|
||||
|
||||
|
||||
configure({
|
||||
request: request,
|
||||
PromiseImpl: Promise,
|
||||
expose: [
|
||||
'then',
|
||||
'catch',
|
||||
'promise'
|
||||
]
|
||||
});
|
||||
|
||||
|
||||
module.exports = request;
|
||||
39
node_modules/request-promise-native/package.json
generated
vendored
Normal file
39
node_modules/request-promise-native/package.json
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "request-promise-native",
|
||||
"version": "1.0.5",
|
||||
"description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.",
|
||||
"main": "./lib/rp.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/request/request-promise-native.git"
|
||||
},
|
||||
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
|
||||
"license": "ISC",
|
||||
"homepage": "https://github.com/request/request-promise-native#readme",
|
||||
"engines": {
|
||||
"node": ">=0.12.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"request-promise-core": "1.1.1",
|
||||
"stealthy-require": "^1.1.0",
|
||||
"tough-cookie": ">=2.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"request": "^2.34"
|
||||
},
|
||||
"devDependencies": {
|
||||
"body-parser": "~1.15.2",
|
||||
"chai": "~3.5.0",
|
||||
"chalk": "~1.1.3",
|
||||
"gulp": "~3.9.1",
|
||||
"gulp-coveralls": "~0.1.4",
|
||||
"gulp-eslint": "~2.1.0",
|
||||
"gulp-istanbul": "~1.0.0",
|
||||
"gulp-mocha": "~2.2.0",
|
||||
"lodash": "~4.13.1",
|
||||
"publish-please": "~2.1.4",
|
||||
"request": "^2.34.0",
|
||||
"rimraf": "~2.5.3",
|
||||
"run-sequence": "~1.2.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user