protoc 1.0.4 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -26
- package/bin/protoc.js +19 -0
- package/index.js +130 -109
- package/package.json +16 -8
- package/protoc.js +5 -5
- package/scripts/postinstall.js +58 -48
- package/scripts/test.js +7 -6
- package/package-lock.json +0 -653
package/README.md
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
|
-
# Protocol Buffers for Node
|
|
2
|
-
A wrapper in Node for the compiled protoc from https://github.com/
|
|
3
|
-
|
|
4
|
-
## Version
|
|
5
|
-
It's currently using Protocol Buffers `v3.
|
|
6
|
-
|
|
7
|
-
## Platforms
|
|
8
|
-
Google only provides binary files for Windows, Linux and OSX in x86_64 and x86_32.
|
|
9
|
-
|
|
10
|
-
## Examples
|
|
11
|
-
There's currently no documentation. Hopefully this example will help.
|
|
12
|
-
|
|
13
|
-
```JavaScript
|
|
14
|
-
var protoc = require("protoc");
|
|
15
|
-
|
|
16
|
-
protoc.library(["path/to/file.proto", "path/to/file2.proto"], function(err, files) {
|
|
17
|
-
if (err)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
//
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
# Protocol Buffers for Node
|
|
2
|
+
A wrapper in Node for the compiled protoc from https://github.com/protocolbuffers/protobuf.
|
|
3
|
+
|
|
4
|
+
## Version
|
|
5
|
+
It's currently using Protocol Buffers `v3.20.3`.
|
|
6
|
+
|
|
7
|
+
## Platforms
|
|
8
|
+
Google only provides binary files for Windows, Linux and OSX in x86_64 and x86_32.
|
|
9
|
+
|
|
10
|
+
## Examples
|
|
11
|
+
There's currently no documentation. Hopefully this example will help.
|
|
12
|
+
|
|
13
|
+
```JavaScript
|
|
14
|
+
var protoc = require("protoc");
|
|
15
|
+
|
|
16
|
+
protoc.library(["path/to/file.proto", "path/to/file2.proto"], function(err, files) {
|
|
17
|
+
if (err) {
|
|
18
|
+
console.error(err);
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Handle the JavaScript Vinyl files.
|
|
23
|
+
// These files can be used in Google Closure Compiler,
|
|
24
|
+
// but they require the files in
|
|
25
|
+
// https://github.com/google/protobuf/tree/master/js
|
|
26
|
+
|
|
27
|
+
// ...
|
|
28
|
+
});
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
It's also possible to directly call the protoc binary file:
|
|
32
|
+
```
|
|
33
|
+
npx protoc --help
|
|
34
|
+
```
|
package/bin/protoc.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { protoc } = require("../");
|
|
4
|
+
|
|
5
|
+
protoc(process.argv.slice(2), {}, (err, stdout, stderr) => {
|
|
6
|
+
if (err) {
|
|
7
|
+
console.error(err);
|
|
8
|
+
process.exit(1);
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
if (stdout) {
|
|
13
|
+
console.info(stdout);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
if (stderr) {
|
|
17
|
+
console.error(stderr);
|
|
18
|
+
}
|
|
19
|
+
})
|
package/index.js
CHANGED
|
@@ -1,109 +1,130 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
exports.protoc = function(args, options, callback) {
|
|
11
|
-
cp.execFile(protoc, args, options, callback);
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
exports.closure = function(files, options, callback) {
|
|
15
|
-
if (!callback) {
|
|
16
|
-
callback = options;
|
|
17
|
-
options = null;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
options.imports = options.imports || [];
|
|
21
|
-
options.outputPath = options.outputPath || "./";
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"--js_out=one_output_file_per_input_file,binary:."
|
|
29
|
-
];
|
|
30
|
-
|
|
31
|
-
for (var i = 0; i < options.imports.length; i++) {
|
|
32
|
-
args.push("-I", path.join(relative, options.imports[i]));
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
for (var i = 0; i < files.length; i++) {
|
|
36
|
-
args.push(path.join(relative, files[i]));
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
mkdirp(options.outputPath, function(err) {
|
|
40
|
-
if (err)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
});
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
1
|
+
const path = require("path");
|
|
2
|
+
const cp = require("child_process");
|
|
3
|
+
const fs = require("fs");
|
|
4
|
+
const protoc = require("./protoc.js");
|
|
5
|
+
const Vinyl = require("vinyl");
|
|
6
|
+
const uuid = require("uuid");
|
|
7
|
+
const mkdirp = require("mkdirp");
|
|
8
|
+
const glob = require("glob");
|
|
9
|
+
|
|
10
|
+
exports.protoc = function(args, options, callback) {
|
|
11
|
+
cp.execFile(protoc, args, options, callback);
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
exports.closure = function(files, options, callback) {
|
|
15
|
+
if (!callback) {
|
|
16
|
+
callback = options;
|
|
17
|
+
options = null;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
options.imports = options.imports || [];
|
|
21
|
+
options.outputPath = options.outputPath || "./";
|
|
22
|
+
|
|
23
|
+
const cwd = process.cwd();
|
|
24
|
+
const absoluteOutputPath = path.resolve(cwd, options.outputPath);
|
|
25
|
+
const relative = path.relative(absoluteOutputPath, cwd);
|
|
26
|
+
|
|
27
|
+
const args = [
|
|
28
|
+
"--js_out=one_output_file_per_input_file,binary:."
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
for (var i = 0; i < options.imports.length; i++) {
|
|
32
|
+
args.push("-I", path.join(relative, options.imports[i]));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
for (var i = 0; i < files.length; i++) {
|
|
36
|
+
args.push(path.join(relative, files[i]));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
mkdirp(options.outputPath, function(err) {
|
|
40
|
+
if (err) {
|
|
41
|
+
callback(err);
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
exports.protoc(args, {
|
|
46
|
+
"cwd": options.outputPath
|
|
47
|
+
}, callback);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Converts .proto files to .js files that can be used in Google Closure
|
|
53
|
+
* Compiler.
|
|
54
|
+
* The generated .js files require the files in
|
|
55
|
+
* https://github.com/protocolbuffers/protobuf/tree/v3.20.3/js.
|
|
56
|
+
* @param {?Array<string>} files the proto files.
|
|
57
|
+
* @param {?function(?Error, ?Array<Vinyl>)} callback the callback method.
|
|
58
|
+
*/
|
|
59
|
+
exports.library = function(files, callback) {
|
|
60
|
+
var dirpath = "tmp";
|
|
61
|
+
var filename = uuid.v4();
|
|
62
|
+
var jsFile = path.join(dirpath, filename);
|
|
63
|
+
mkdirp("tmp", function(err) {
|
|
64
|
+
if (err) {
|
|
65
|
+
callback(err);
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
exports.protoc(["--js_out=library=" + jsFile + ",binary:."].concat(files), function(err, stdout, stderr) {
|
|
70
|
+
if (err) {
|
|
71
|
+
callback(err);
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if (fs.existsSync(jsFile + ".js")) {
|
|
76
|
+
fs.readFile(jsFile + ".js", function(err, contents) {
|
|
77
|
+
if (err) {
|
|
78
|
+
callback(err);
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
fs.unlink(jsFile + ".js", function(err) {
|
|
83
|
+
if (err) {
|
|
84
|
+
callback(err);
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
fs.rmdir(dirpath, function() {
|
|
89
|
+
callback(null, [new Vinyl({
|
|
90
|
+
"cwd": "/",
|
|
91
|
+
"base": "/",
|
|
92
|
+
"path": filename + ".js",
|
|
93
|
+
"contents": contents
|
|
94
|
+
})]);
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
} else {
|
|
99
|
+
glob("**/*.js", {
|
|
100
|
+
"cwd": jsFile
|
|
101
|
+
}, function(err, matches) {
|
|
102
|
+
if (err) {
|
|
103
|
+
callback(err, null);
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
var files = matches.map(function(match) {
|
|
108
|
+
return new Vinyl({
|
|
109
|
+
"cwd": "/",
|
|
110
|
+
"base": "/",
|
|
111
|
+
"path": match,
|
|
112
|
+
"contents": fs.readFileSync(path.join(jsFile, match))
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
rimraf(jsFile, function(err) {
|
|
117
|
+
if (err) {
|
|
118
|
+
callback(err);
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
fs.rmdir(dirpath, function() {
|
|
123
|
+
callback(null, files);
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
};
|
package/package.json
CHANGED
|
@@ -1,21 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "protoc",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A tool for converting proto buffers (.proto) files into javascript files usable in Closure Compiler with Closure Library.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node scripts/postinstall.js",
|
|
8
8
|
"test": "node scripts/test.js"
|
|
9
9
|
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"protoc": "./bin/protoc.sh"
|
|
12
|
+
},
|
|
10
13
|
"author": "Jeppe Rune Mortensen <jepperm@gmail.com>",
|
|
11
14
|
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/YePpHa/node-protoc.git"
|
|
18
|
+
},
|
|
12
19
|
"dependencies": {
|
|
13
|
-
"glob": "^7.
|
|
14
|
-
"mkdirp": "^0.5.
|
|
15
|
-
"node-
|
|
16
|
-
"request": "^2.88.
|
|
17
|
-
"rimraf": "^3.0.
|
|
18
|
-
"unzipper": "^0.10.
|
|
19
|
-
"
|
|
20
|
+
"glob": "^7.2.3",
|
|
21
|
+
"mkdirp": "^0.5.6",
|
|
22
|
+
"node-fetch": "^3.2.10",
|
|
23
|
+
"request": "^2.88.2",
|
|
24
|
+
"rimraf": "^3.0.2",
|
|
25
|
+
"unzipper": "^0.10.11",
|
|
26
|
+
"uuid": "^9.0.0",
|
|
27
|
+
"vinyl": "^2.2.1"
|
|
20
28
|
}
|
|
21
29
|
}
|
package/protoc.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
module.exports = path.join(protoc_bin, "protoc" + (process.platform === "win32" ? ".exe" : ""));
|
|
1
|
+
const path = require("path");
|
|
2
|
+
|
|
3
|
+
const protoc_bin = path.join(__dirname, "protoc", "bin");
|
|
4
|
+
|
|
5
|
+
module.exports = path.join(protoc_bin, "protoc" + (process.platform === "win32" ? ".exe" : ""));
|
package/scripts/postinstall.js
CHANGED
|
@@ -1,48 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
if (releases[release]) {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
const fs = require("fs");
|
|
2
|
+
const path = require("path");
|
|
3
|
+
const unzip = require("unzipper");
|
|
4
|
+
const mkdirp = require("mkdirp");
|
|
5
|
+
const protoc = require("../protoc.js");
|
|
6
|
+
|
|
7
|
+
const protoVersion = "3.20.3";
|
|
8
|
+
|
|
9
|
+
const releases = {
|
|
10
|
+
"win32_x86_32": `https://github.com/protocolbuffers/protobuf/releases/download/v${protoVersion}/protoc-${protoVersion}-win32.zip`,
|
|
11
|
+
"win32_x86_64": `https://github.com/protocolbuffers/protobuf/releases/download/v${protoVersion}/protoc-${protoVersion}-win32.zip`,
|
|
12
|
+
"linux_x86_32": `https://github.com/protocolbuffers/protobuf/releases/download/v${protoVersion}/protoc-${protoVersion}-linux-x86_32.zip`,
|
|
13
|
+
"linux_x86_64": `https://github.com/protocolbuffers/protobuf/releases/download/v${protoVersion}/protoc-${protoVersion}-linux-x86_64.zip`,
|
|
14
|
+
"darwin_x86_64": `https://github.com/protocolbuffers/protobuf/releases/download/v${protoVersion}/protoc-${protoVersion}-osx-x86_64.zip`
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const platform = process.platform;
|
|
18
|
+
const arch = process.arch === "x64" ? "x86_64" : "x86_32";
|
|
19
|
+
const release = platform + "_" + arch;
|
|
20
|
+
const protocDirectory = path.join(__dirname, "..", "protoc");
|
|
21
|
+
|
|
22
|
+
(async () => {
|
|
23
|
+
if (!releases[release]) {
|
|
24
|
+
throw new Error(`Unsupported platform: ${release}. Was not able to find a proper protoc version.`);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
fs.rmSync(protocDirectory, { recursive: true, force: true });
|
|
28
|
+
|
|
29
|
+
const fetch = await import("node-fetch");
|
|
30
|
+
const response = await fetch.default(releases[release]);
|
|
31
|
+
response
|
|
32
|
+
.body
|
|
33
|
+
.pipe(unzip.Parse())
|
|
34
|
+
.on("entry", entry => {
|
|
35
|
+
const isFile = "File" === entry.type;
|
|
36
|
+
const isDir = "Directory" === entry.type;
|
|
37
|
+
const fullpath = path.join(protocDirectory, entry.path);
|
|
38
|
+
const directory = isDir ? fullpath : path.dirname(fullpath);
|
|
39
|
+
|
|
40
|
+
mkdirp(directory, err => {
|
|
41
|
+
if (err) {
|
|
42
|
+
throw err;
|
|
43
|
+
}
|
|
44
|
+
if (isFile) {
|
|
45
|
+
entry.pipe(fs.createWriteStream(fullpath))
|
|
46
|
+
.on("finish", function() {
|
|
47
|
+
if (protoc === fullpath) {
|
|
48
|
+
fs.chmod(fullpath, 0o755, function(err) {
|
|
49
|
+
if (err) {
|
|
50
|
+
throw err;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
})();
|
package/scripts/test.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
protoc.library(["protoc/include/google/protobuf/timestamp.proto"], function(err, files) {
|
|
3
|
-
if (err)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
const protoc = require("../index.js");
|
|
2
|
+
protoc.library(["protoc/include/google/protobuf/timestamp.proto"], function(err, files) {
|
|
3
|
+
if (err) {
|
|
4
|
+
console.error(err);
|
|
5
|
+
return;
|
|
6
|
+
}
|
|
7
|
+
});
|
package/package-lock.json
DELETED
|
@@ -1,653 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "protoc",
|
|
3
|
-
"version": "1.0.3",
|
|
4
|
-
"lockfileVersion": 1,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"ajv": {
|
|
8
|
-
"version": "6.10.2",
|
|
9
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/ajv/-/ajv-6.10.2.tgz",
|
|
10
|
-
"integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==",
|
|
11
|
-
"requires": {
|
|
12
|
-
"fast-deep-equal": "^2.0.1",
|
|
13
|
-
"fast-json-stable-stringify": "^2.0.0",
|
|
14
|
-
"json-schema-traverse": "^0.4.1",
|
|
15
|
-
"uri-js": "^4.2.2"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"asn1": {
|
|
19
|
-
"version": "0.2.4",
|
|
20
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/asn1/-/asn1-0.2.4.tgz",
|
|
21
|
-
"integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
|
|
22
|
-
"requires": {
|
|
23
|
-
"safer-buffer": "~2.1.0"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"assert-plus": {
|
|
27
|
-
"version": "1.0.0",
|
|
28
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/assert-plus/-/assert-plus-1.0.0.tgz",
|
|
29
|
-
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
|
30
|
-
},
|
|
31
|
-
"asynckit": {
|
|
32
|
-
"version": "0.4.0",
|
|
33
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/asynckit/-/asynckit-0.4.0.tgz",
|
|
34
|
-
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
|
35
|
-
},
|
|
36
|
-
"aws-sign2": {
|
|
37
|
-
"version": "0.7.0",
|
|
38
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/aws-sign2/-/aws-sign2-0.7.0.tgz",
|
|
39
|
-
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
|
|
40
|
-
},
|
|
41
|
-
"aws4": {
|
|
42
|
-
"version": "1.9.1",
|
|
43
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/aws4/-/aws4-1.9.1.tgz",
|
|
44
|
-
"integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="
|
|
45
|
-
},
|
|
46
|
-
"balanced-match": {
|
|
47
|
-
"version": "1.0.0",
|
|
48
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/balanced-match/-/balanced-match-1.0.0.tgz",
|
|
49
|
-
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
|
|
50
|
-
},
|
|
51
|
-
"bcrypt-pbkdf": {
|
|
52
|
-
"version": "1.0.2",
|
|
53
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
|
|
54
|
-
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
|
|
55
|
-
"requires": {
|
|
56
|
-
"tweetnacl": "^0.14.3"
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
"big-integer": {
|
|
60
|
-
"version": "1.6.48",
|
|
61
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/big-integer/-/big-integer-1.6.48.tgz",
|
|
62
|
-
"integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="
|
|
63
|
-
},
|
|
64
|
-
"binary": {
|
|
65
|
-
"version": "0.3.0",
|
|
66
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/binary/-/binary-0.3.0.tgz",
|
|
67
|
-
"integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=",
|
|
68
|
-
"requires": {
|
|
69
|
-
"buffers": "~0.1.1",
|
|
70
|
-
"chainsaw": "~0.1.0"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"bluebird": {
|
|
74
|
-
"version": "3.4.7",
|
|
75
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/bluebird/-/bluebird-3.4.7.tgz",
|
|
76
|
-
"integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM="
|
|
77
|
-
},
|
|
78
|
-
"brace-expansion": {
|
|
79
|
-
"version": "1.1.11",
|
|
80
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
81
|
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
82
|
-
"requires": {
|
|
83
|
-
"balanced-match": "^1.0.0",
|
|
84
|
-
"concat-map": "0.0.1"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"buffer-indexof-polyfill": {
|
|
88
|
-
"version": "1.0.1",
|
|
89
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.1.tgz",
|
|
90
|
-
"integrity": "sha1-qfuAbOgUXVQoUQznLyeLs2OmOL8="
|
|
91
|
-
},
|
|
92
|
-
"buffers": {
|
|
93
|
-
"version": "0.1.1",
|
|
94
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/buffers/-/buffers-0.1.1.tgz",
|
|
95
|
-
"integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s="
|
|
96
|
-
},
|
|
97
|
-
"caseless": {
|
|
98
|
-
"version": "0.12.0",
|
|
99
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/caseless/-/caseless-0.12.0.tgz",
|
|
100
|
-
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
|
101
|
-
},
|
|
102
|
-
"chainsaw": {
|
|
103
|
-
"version": "0.1.0",
|
|
104
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/chainsaw/-/chainsaw-0.1.0.tgz",
|
|
105
|
-
"integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=",
|
|
106
|
-
"requires": {
|
|
107
|
-
"traverse": ">=0.3.0 <0.4"
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
"clone": {
|
|
111
|
-
"version": "2.1.2",
|
|
112
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/clone/-/clone-2.1.2.tgz",
|
|
113
|
-
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
|
|
114
|
-
},
|
|
115
|
-
"clone-buffer": {
|
|
116
|
-
"version": "1.0.0",
|
|
117
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/clone-buffer/-/clone-buffer-1.0.0.tgz",
|
|
118
|
-
"integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg="
|
|
119
|
-
},
|
|
120
|
-
"clone-stats": {
|
|
121
|
-
"version": "1.0.0",
|
|
122
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/clone-stats/-/clone-stats-1.0.0.tgz",
|
|
123
|
-
"integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA="
|
|
124
|
-
},
|
|
125
|
-
"cloneable-readable": {
|
|
126
|
-
"version": "1.1.3",
|
|
127
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/cloneable-readable/-/cloneable-readable-1.1.3.tgz",
|
|
128
|
-
"integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==",
|
|
129
|
-
"requires": {
|
|
130
|
-
"inherits": "^2.0.1",
|
|
131
|
-
"process-nextick-args": "^2.0.0",
|
|
132
|
-
"readable-stream": "^2.3.5"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"combined-stream": {
|
|
136
|
-
"version": "1.0.8",
|
|
137
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
138
|
-
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
139
|
-
"requires": {
|
|
140
|
-
"delayed-stream": "~1.0.0"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"concat-map": {
|
|
144
|
-
"version": "0.0.1",
|
|
145
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/concat-map/-/concat-map-0.0.1.tgz",
|
|
146
|
-
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
|
|
147
|
-
},
|
|
148
|
-
"core-util-is": {
|
|
149
|
-
"version": "1.0.2",
|
|
150
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/core-util-is/-/core-util-is-1.0.2.tgz",
|
|
151
|
-
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
|
152
|
-
},
|
|
153
|
-
"dashdash": {
|
|
154
|
-
"version": "1.14.1",
|
|
155
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/dashdash/-/dashdash-1.14.1.tgz",
|
|
156
|
-
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
|
|
157
|
-
"requires": {
|
|
158
|
-
"assert-plus": "^1.0.0"
|
|
159
|
-
}
|
|
160
|
-
},
|
|
161
|
-
"delayed-stream": {
|
|
162
|
-
"version": "1.0.0",
|
|
163
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
164
|
-
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
|
165
|
-
},
|
|
166
|
-
"duplexer2": {
|
|
167
|
-
"version": "0.1.4",
|
|
168
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/duplexer2/-/duplexer2-0.1.4.tgz",
|
|
169
|
-
"integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=",
|
|
170
|
-
"requires": {
|
|
171
|
-
"readable-stream": "^2.0.2"
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
|
-
"ecc-jsbn": {
|
|
175
|
-
"version": "0.1.2",
|
|
176
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
|
|
177
|
-
"integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
|
|
178
|
-
"requires": {
|
|
179
|
-
"jsbn": "~0.1.0",
|
|
180
|
-
"safer-buffer": "^2.1.0"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
"extend": {
|
|
184
|
-
"version": "3.0.2",
|
|
185
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/extend/-/extend-3.0.2.tgz",
|
|
186
|
-
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
|
|
187
|
-
},
|
|
188
|
-
"extsprintf": {
|
|
189
|
-
"version": "1.3.0",
|
|
190
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/extsprintf/-/extsprintf-1.3.0.tgz",
|
|
191
|
-
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
|
|
192
|
-
},
|
|
193
|
-
"fast-deep-equal": {
|
|
194
|
-
"version": "2.0.1",
|
|
195
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
|
|
196
|
-
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
|
|
197
|
-
},
|
|
198
|
-
"fast-json-stable-stringify": {
|
|
199
|
-
"version": "2.1.0",
|
|
200
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
|
201
|
-
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
|
202
|
-
},
|
|
203
|
-
"forever-agent": {
|
|
204
|
-
"version": "0.6.1",
|
|
205
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/forever-agent/-/forever-agent-0.6.1.tgz",
|
|
206
|
-
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
|
|
207
|
-
},
|
|
208
|
-
"form-data": {
|
|
209
|
-
"version": "2.3.3",
|
|
210
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/form-data/-/form-data-2.3.3.tgz",
|
|
211
|
-
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
|
212
|
-
"requires": {
|
|
213
|
-
"asynckit": "^0.4.0",
|
|
214
|
-
"combined-stream": "^1.0.6",
|
|
215
|
-
"mime-types": "^2.1.12"
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
"fs.realpath": {
|
|
219
|
-
"version": "1.0.0",
|
|
220
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
221
|
-
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
|
222
|
-
},
|
|
223
|
-
"fstream": {
|
|
224
|
-
"version": "1.0.12",
|
|
225
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/fstream/-/fstream-1.0.12.tgz",
|
|
226
|
-
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
|
|
227
|
-
"requires": {
|
|
228
|
-
"graceful-fs": "^4.1.2",
|
|
229
|
-
"inherits": "~2.0.0",
|
|
230
|
-
"mkdirp": ">=0.5 0",
|
|
231
|
-
"rimraf": "2"
|
|
232
|
-
},
|
|
233
|
-
"dependencies": {
|
|
234
|
-
"rimraf": {
|
|
235
|
-
"version": "2.7.1",
|
|
236
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/rimraf/-/rimraf-2.7.1.tgz",
|
|
237
|
-
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
|
|
238
|
-
"requires": {
|
|
239
|
-
"glob": "^7.1.3"
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
"getpass": {
|
|
245
|
-
"version": "0.1.7",
|
|
246
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/getpass/-/getpass-0.1.7.tgz",
|
|
247
|
-
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
|
|
248
|
-
"requires": {
|
|
249
|
-
"assert-plus": "^1.0.0"
|
|
250
|
-
}
|
|
251
|
-
},
|
|
252
|
-
"glob": {
|
|
253
|
-
"version": "7.1.6",
|
|
254
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/glob/-/glob-7.1.6.tgz",
|
|
255
|
-
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
|
256
|
-
"requires": {
|
|
257
|
-
"fs.realpath": "^1.0.0",
|
|
258
|
-
"inflight": "^1.0.4",
|
|
259
|
-
"inherits": "2",
|
|
260
|
-
"minimatch": "^3.0.4",
|
|
261
|
-
"once": "^1.3.0",
|
|
262
|
-
"path-is-absolute": "^1.0.0"
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
|
-
"graceful-fs": {
|
|
266
|
-
"version": "4.2.3",
|
|
267
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/graceful-fs/-/graceful-fs-4.2.3.tgz",
|
|
268
|
-
"integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ=="
|
|
269
|
-
},
|
|
270
|
-
"har-schema": {
|
|
271
|
-
"version": "2.0.0",
|
|
272
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/har-schema/-/har-schema-2.0.0.tgz",
|
|
273
|
-
"integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
|
|
274
|
-
},
|
|
275
|
-
"har-validator": {
|
|
276
|
-
"version": "5.1.3",
|
|
277
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/har-validator/-/har-validator-5.1.3.tgz",
|
|
278
|
-
"integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
|
|
279
|
-
"requires": {
|
|
280
|
-
"ajv": "^6.5.5",
|
|
281
|
-
"har-schema": "^2.0.0"
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
"http-signature": {
|
|
285
|
-
"version": "1.2.0",
|
|
286
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/http-signature/-/http-signature-1.2.0.tgz",
|
|
287
|
-
"integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
|
|
288
|
-
"requires": {
|
|
289
|
-
"assert-plus": "^1.0.0",
|
|
290
|
-
"jsprim": "^1.2.2",
|
|
291
|
-
"sshpk": "^1.7.0"
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
"inflight": {
|
|
295
|
-
"version": "1.0.6",
|
|
296
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/inflight/-/inflight-1.0.6.tgz",
|
|
297
|
-
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
|
298
|
-
"requires": {
|
|
299
|
-
"once": "^1.3.0",
|
|
300
|
-
"wrappy": "1"
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
"inherits": {
|
|
304
|
-
"version": "2.0.4",
|
|
305
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/inherits/-/inherits-2.0.4.tgz",
|
|
306
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
307
|
-
},
|
|
308
|
-
"is-typedarray": {
|
|
309
|
-
"version": "1.0.0",
|
|
310
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
|
311
|
-
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
|
|
312
|
-
},
|
|
313
|
-
"isarray": {
|
|
314
|
-
"version": "1.0.0",
|
|
315
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/isarray/-/isarray-1.0.0.tgz",
|
|
316
|
-
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
|
|
317
|
-
},
|
|
318
|
-
"isstream": {
|
|
319
|
-
"version": "0.1.2",
|
|
320
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/isstream/-/isstream-0.1.2.tgz",
|
|
321
|
-
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
|
322
|
-
},
|
|
323
|
-
"jsbn": {
|
|
324
|
-
"version": "0.1.1",
|
|
325
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/jsbn/-/jsbn-0.1.1.tgz",
|
|
326
|
-
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
|
|
327
|
-
},
|
|
328
|
-
"json-schema": {
|
|
329
|
-
"version": "0.2.3",
|
|
330
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/json-schema/-/json-schema-0.2.3.tgz",
|
|
331
|
-
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
|
|
332
|
-
},
|
|
333
|
-
"json-schema-traverse": {
|
|
334
|
-
"version": "0.4.1",
|
|
335
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
|
336
|
-
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
|
337
|
-
},
|
|
338
|
-
"json-stringify-safe": {
|
|
339
|
-
"version": "5.0.1",
|
|
340
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
|
341
|
-
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
|
342
|
-
},
|
|
343
|
-
"jsprim": {
|
|
344
|
-
"version": "1.4.1",
|
|
345
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/jsprim/-/jsprim-1.4.1.tgz",
|
|
346
|
-
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
|
|
347
|
-
"requires": {
|
|
348
|
-
"assert-plus": "1.0.0",
|
|
349
|
-
"extsprintf": "1.3.0",
|
|
350
|
-
"json-schema": "0.2.3",
|
|
351
|
-
"verror": "1.10.0"
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
"listenercount": {
|
|
355
|
-
"version": "1.0.1",
|
|
356
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/listenercount/-/listenercount-1.0.1.tgz",
|
|
357
|
-
"integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc="
|
|
358
|
-
},
|
|
359
|
-
"mime-db": {
|
|
360
|
-
"version": "1.43.0",
|
|
361
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/mime-db/-/mime-db-1.43.0.tgz",
|
|
362
|
-
"integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ=="
|
|
363
|
-
},
|
|
364
|
-
"mime-types": {
|
|
365
|
-
"version": "2.1.26",
|
|
366
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/mime-types/-/mime-types-2.1.26.tgz",
|
|
367
|
-
"integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==",
|
|
368
|
-
"requires": {
|
|
369
|
-
"mime-db": "1.43.0"
|
|
370
|
-
}
|
|
371
|
-
},
|
|
372
|
-
"minimatch": {
|
|
373
|
-
"version": "3.0.4",
|
|
374
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/minimatch/-/minimatch-3.0.4.tgz",
|
|
375
|
-
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
|
376
|
-
"requires": {
|
|
377
|
-
"brace-expansion": "^1.1.7"
|
|
378
|
-
}
|
|
379
|
-
},
|
|
380
|
-
"minimist": {
|
|
381
|
-
"version": "0.0.8",
|
|
382
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/minimist/-/minimist-0.0.8.tgz",
|
|
383
|
-
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
|
384
|
-
},
|
|
385
|
-
"mkdirp": {
|
|
386
|
-
"version": "0.5.1",
|
|
387
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/mkdirp/-/mkdirp-0.5.1.tgz",
|
|
388
|
-
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
|
389
|
-
"requires": {
|
|
390
|
-
"minimist": "0.0.8"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
"node-uuid": {
|
|
394
|
-
"version": "1.4.8",
|
|
395
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/node-uuid/-/node-uuid-1.4.8.tgz",
|
|
396
|
-
"integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc="
|
|
397
|
-
},
|
|
398
|
-
"oauth-sign": {
|
|
399
|
-
"version": "0.9.0",
|
|
400
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/oauth-sign/-/oauth-sign-0.9.0.tgz",
|
|
401
|
-
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
|
|
402
|
-
},
|
|
403
|
-
"once": {
|
|
404
|
-
"version": "1.4.0",
|
|
405
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/once/-/once-1.4.0.tgz",
|
|
406
|
-
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
|
407
|
-
"requires": {
|
|
408
|
-
"wrappy": "1"
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
"path-is-absolute": {
|
|
412
|
-
"version": "1.0.1",
|
|
413
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
414
|
-
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
|
|
415
|
-
},
|
|
416
|
-
"performance-now": {
|
|
417
|
-
"version": "2.1.0",
|
|
418
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/performance-now/-/performance-now-2.1.0.tgz",
|
|
419
|
-
"integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
|
|
420
|
-
},
|
|
421
|
-
"process-nextick-args": {
|
|
422
|
-
"version": "2.0.1",
|
|
423
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
424
|
-
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
|
425
|
-
},
|
|
426
|
-
"psl": {
|
|
427
|
-
"version": "1.7.0",
|
|
428
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/psl/-/psl-1.7.0.tgz",
|
|
429
|
-
"integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ=="
|
|
430
|
-
},
|
|
431
|
-
"punycode": {
|
|
432
|
-
"version": "2.1.1",
|
|
433
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/punycode/-/punycode-2.1.1.tgz",
|
|
434
|
-
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
|
|
435
|
-
},
|
|
436
|
-
"qs": {
|
|
437
|
-
"version": "6.5.2",
|
|
438
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/qs/-/qs-6.5.2.tgz",
|
|
439
|
-
"integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
|
|
440
|
-
},
|
|
441
|
-
"readable-stream": {
|
|
442
|
-
"version": "2.3.7",
|
|
443
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/readable-stream/-/readable-stream-2.3.7.tgz",
|
|
444
|
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
|
445
|
-
"requires": {
|
|
446
|
-
"core-util-is": "~1.0.0",
|
|
447
|
-
"inherits": "~2.0.3",
|
|
448
|
-
"isarray": "~1.0.0",
|
|
449
|
-
"process-nextick-args": "~2.0.0",
|
|
450
|
-
"safe-buffer": "~5.1.1",
|
|
451
|
-
"string_decoder": "~1.1.1",
|
|
452
|
-
"util-deprecate": "~1.0.1"
|
|
453
|
-
},
|
|
454
|
-
"dependencies": {
|
|
455
|
-
"safe-buffer": {
|
|
456
|
-
"version": "5.1.2",
|
|
457
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
458
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
},
|
|
462
|
-
"remove-trailing-separator": {
|
|
463
|
-
"version": "1.1.0",
|
|
464
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
|
|
465
|
-
"integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8="
|
|
466
|
-
},
|
|
467
|
-
"replace-ext": {
|
|
468
|
-
"version": "1.0.0",
|
|
469
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/replace-ext/-/replace-ext-1.0.0.tgz",
|
|
470
|
-
"integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs="
|
|
471
|
-
},
|
|
472
|
-
"request": {
|
|
473
|
-
"version": "2.88.0",
|
|
474
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/request/-/request-2.88.0.tgz",
|
|
475
|
-
"integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
|
|
476
|
-
"requires": {
|
|
477
|
-
"aws-sign2": "~0.7.0",
|
|
478
|
-
"aws4": "^1.8.0",
|
|
479
|
-
"caseless": "~0.12.0",
|
|
480
|
-
"combined-stream": "~1.0.6",
|
|
481
|
-
"extend": "~3.0.2",
|
|
482
|
-
"forever-agent": "~0.6.1",
|
|
483
|
-
"form-data": "~2.3.2",
|
|
484
|
-
"har-validator": "~5.1.0",
|
|
485
|
-
"http-signature": "~1.2.0",
|
|
486
|
-
"is-typedarray": "~1.0.0",
|
|
487
|
-
"isstream": "~0.1.2",
|
|
488
|
-
"json-stringify-safe": "~5.0.1",
|
|
489
|
-
"mime-types": "~2.1.19",
|
|
490
|
-
"oauth-sign": "~0.9.0",
|
|
491
|
-
"performance-now": "^2.1.0",
|
|
492
|
-
"qs": "~6.5.2",
|
|
493
|
-
"safe-buffer": "^5.1.2",
|
|
494
|
-
"tough-cookie": "~2.4.3",
|
|
495
|
-
"tunnel-agent": "^0.6.0",
|
|
496
|
-
"uuid": "^3.3.2"
|
|
497
|
-
},
|
|
498
|
-
"dependencies": {
|
|
499
|
-
"uuid": {
|
|
500
|
-
"version": "3.4.0",
|
|
501
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/uuid/-/uuid-3.4.0.tgz",
|
|
502
|
-
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
"rimraf": {
|
|
507
|
-
"version": "3.0.0",
|
|
508
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/rimraf/-/rimraf-3.0.0.tgz",
|
|
509
|
-
"integrity": "sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg==",
|
|
510
|
-
"requires": {
|
|
511
|
-
"glob": "^7.1.3"
|
|
512
|
-
}
|
|
513
|
-
},
|
|
514
|
-
"safe-buffer": {
|
|
515
|
-
"version": "5.2.0",
|
|
516
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/safe-buffer/-/safe-buffer-5.2.0.tgz",
|
|
517
|
-
"integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="
|
|
518
|
-
},
|
|
519
|
-
"safer-buffer": {
|
|
520
|
-
"version": "2.1.2",
|
|
521
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
522
|
-
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
|
523
|
-
},
|
|
524
|
-
"setimmediate": {
|
|
525
|
-
"version": "1.0.5",
|
|
526
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/setimmediate/-/setimmediate-1.0.5.tgz",
|
|
527
|
-
"integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
|
|
528
|
-
},
|
|
529
|
-
"sshpk": {
|
|
530
|
-
"version": "1.16.1",
|
|
531
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/sshpk/-/sshpk-1.16.1.tgz",
|
|
532
|
-
"integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
|
|
533
|
-
"requires": {
|
|
534
|
-
"asn1": "~0.2.3",
|
|
535
|
-
"assert-plus": "^1.0.0",
|
|
536
|
-
"bcrypt-pbkdf": "^1.0.0",
|
|
537
|
-
"dashdash": "^1.12.0",
|
|
538
|
-
"ecc-jsbn": "~0.1.1",
|
|
539
|
-
"getpass": "^0.1.1",
|
|
540
|
-
"jsbn": "~0.1.0",
|
|
541
|
-
"safer-buffer": "^2.0.2",
|
|
542
|
-
"tweetnacl": "~0.14.0"
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
"string_decoder": {
|
|
546
|
-
"version": "1.1.1",
|
|
547
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
548
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
549
|
-
"requires": {
|
|
550
|
-
"safe-buffer": "~5.1.0"
|
|
551
|
-
},
|
|
552
|
-
"dependencies": {
|
|
553
|
-
"safe-buffer": {
|
|
554
|
-
"version": "5.1.2",
|
|
555
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
556
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
"tough-cookie": {
|
|
561
|
-
"version": "2.4.3",
|
|
562
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/tough-cookie/-/tough-cookie-2.4.3.tgz",
|
|
563
|
-
"integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
|
|
564
|
-
"requires": {
|
|
565
|
-
"psl": "^1.1.24",
|
|
566
|
-
"punycode": "^1.4.1"
|
|
567
|
-
},
|
|
568
|
-
"dependencies": {
|
|
569
|
-
"punycode": {
|
|
570
|
-
"version": "1.4.1",
|
|
571
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/punycode/-/punycode-1.4.1.tgz",
|
|
572
|
-
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
"traverse": {
|
|
577
|
-
"version": "0.3.9",
|
|
578
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/traverse/-/traverse-0.3.9.tgz",
|
|
579
|
-
"integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk="
|
|
580
|
-
},
|
|
581
|
-
"tunnel-agent": {
|
|
582
|
-
"version": "0.6.0",
|
|
583
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
|
584
|
-
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
|
|
585
|
-
"requires": {
|
|
586
|
-
"safe-buffer": "^5.0.1"
|
|
587
|
-
}
|
|
588
|
-
},
|
|
589
|
-
"tweetnacl": {
|
|
590
|
-
"version": "0.14.5",
|
|
591
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/tweetnacl/-/tweetnacl-0.14.5.tgz",
|
|
592
|
-
"integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
|
|
593
|
-
},
|
|
594
|
-
"unzipper": {
|
|
595
|
-
"version": "0.10.5",
|
|
596
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/unzipper/-/unzipper-0.10.5.tgz",
|
|
597
|
-
"integrity": "sha512-i5ufkXNjWZYxU/0nKKf6LkvW8kn9YzRvfwuPWjXP+JTFce/8bqeR0gEfbiN2IDdJa6ZU6/2IzFRLK0z1v0uptw==",
|
|
598
|
-
"requires": {
|
|
599
|
-
"big-integer": "^1.6.17",
|
|
600
|
-
"binary": "~0.3.0",
|
|
601
|
-
"bluebird": "~3.4.1",
|
|
602
|
-
"buffer-indexof-polyfill": "~1.0.0",
|
|
603
|
-
"duplexer2": "~0.1.4",
|
|
604
|
-
"fstream": "^1.0.12",
|
|
605
|
-
"graceful-fs": "^4.2.2",
|
|
606
|
-
"listenercount": "~1.0.1",
|
|
607
|
-
"readable-stream": "~2.3.6",
|
|
608
|
-
"setimmediate": "~1.0.4"
|
|
609
|
-
}
|
|
610
|
-
},
|
|
611
|
-
"uri-js": {
|
|
612
|
-
"version": "4.2.2",
|
|
613
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/uri-js/-/uri-js-4.2.2.tgz",
|
|
614
|
-
"integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
|
|
615
|
-
"requires": {
|
|
616
|
-
"punycode": "^2.1.0"
|
|
617
|
-
}
|
|
618
|
-
},
|
|
619
|
-
"util-deprecate": {
|
|
620
|
-
"version": "1.0.2",
|
|
621
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
622
|
-
"integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
|
|
623
|
-
},
|
|
624
|
-
"verror": {
|
|
625
|
-
"version": "1.10.0",
|
|
626
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/verror/-/verror-1.10.0.tgz",
|
|
627
|
-
"integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
|
|
628
|
-
"requires": {
|
|
629
|
-
"assert-plus": "^1.0.0",
|
|
630
|
-
"core-util-is": "1.0.2",
|
|
631
|
-
"extsprintf": "^1.2.0"
|
|
632
|
-
}
|
|
633
|
-
},
|
|
634
|
-
"vinyl": {
|
|
635
|
-
"version": "2.2.0",
|
|
636
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/vinyl/-/vinyl-2.2.0.tgz",
|
|
637
|
-
"integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==",
|
|
638
|
-
"requires": {
|
|
639
|
-
"clone": "^2.1.1",
|
|
640
|
-
"clone-buffer": "^1.0.0",
|
|
641
|
-
"clone-stats": "^1.0.0",
|
|
642
|
-
"cloneable-readable": "^1.0.0",
|
|
643
|
-
"remove-trailing-separator": "^1.0.1",
|
|
644
|
-
"replace-ext": "^1.0.0"
|
|
645
|
-
}
|
|
646
|
-
},
|
|
647
|
-
"wrappy": {
|
|
648
|
-
"version": "1.0.2",
|
|
649
|
-
"resolved": "http://nexus.devops.flexpond.net:8081/repository/npm-all/wrappy/-/wrappy-1.0.2.tgz",
|
|
650
|
-
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
|
651
|
-
}
|
|
652
|
-
}
|
|
653
|
-
}
|