step-node-agent 3.29.2 → 3.29.3-customJava25v2

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.
Files changed (65) hide show
  1. package/node_modules/har-validator/node_modules/ajv/README.md +14 -6
  2. package/node_modules/har-validator/node_modules/ajv/dist/ajv.bundle.js +23 -11
  3. package/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js +2 -2
  4. package/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js.map +1 -1
  5. package/node_modules/har-validator/node_modules/ajv/lib/ajv.d.ts +5 -0
  6. package/node_modules/har-validator/node_modules/ajv/lib/compile/index.js +8 -6
  7. package/node_modules/har-validator/node_modules/ajv/lib/dot/pattern.jst +15 -4
  8. package/node_modules/har-validator/node_modules/ajv/lib/dotjs/pattern.js +14 -4
  9. package/node_modules/har-validator/node_modules/ajv/package.json +2 -1
  10. package/node_modules/har-validator/node_modules/ajv/scripts/info +0 -0
  11. package/node_modules/har-validator/node_modules/ajv/scripts/prepare-tests +0 -0
  12. package/node_modules/har-validator/node_modules/ajv/scripts/publish-built-version +0 -0
  13. package/node_modules/har-validator/node_modules/ajv/scripts/travis-gh-pages +0 -0
  14. package/node_modules/minimatch/README.md +37 -0
  15. package/node_modules/minimatch/minimatch.js +160 -102
  16. package/node_modules/minimatch/package.json +2 -2
  17. package/node_modules/qs/.editorconfig +1 -1
  18. package/node_modules/qs/CHANGELOG.md +14 -1
  19. package/node_modules/qs/README.md +11 -4
  20. package/node_modules/qs/dist/qs.js +20 -20
  21. package/node_modules/qs/lib/parse.js +21 -10
  22. package/node_modules/qs/lib/utils.js +28 -8
  23. package/node_modules/qs/package.json +1 -1
  24. package/node_modules/qs/test/parse.js +125 -9
  25. package/node_modules/qs/test/utils.js +36 -20
  26. package/node_modules/request/node_modules/qs/CHANGELOG.md +12 -0
  27. package/node_modules/request/node_modules/qs/README.md +9 -3
  28. package/node_modules/request/node_modules/qs/dist/qs.js +10 -10
  29. package/node_modules/request/node_modules/qs/lib/parse.js +4 -4
  30. package/node_modules/request/node_modules/qs/lib/utils.js +6 -6
  31. package/node_modules/request/node_modules/qs/package.json +13 -4
  32. package/node_modules/request/node_modules/qs/test/parse.js +9 -0
  33. package/node_modules/request/node_modules/qs/test/stringify.js +6 -0
  34. package/node_modules/underscore/amd/_setup.js +1 -1
  35. package/node_modules/underscore/amd/pipe.js +13 -0
  36. package/node_modules/underscore/cjs/_setup.js +1 -1
  37. package/node_modules/underscore/cjs/pipe.js +12 -0
  38. package/node_modules/underscore/modules/_flatten.js +20 -18
  39. package/node_modules/underscore/modules/_setup.js +1 -1
  40. package/node_modules/underscore/modules/index.js +2 -2
  41. package/node_modules/underscore/modules/isEqual.js +108 -93
  42. package/node_modules/underscore/modules/package.json +1 -1
  43. package/node_modules/underscore/package.json +1 -1
  44. package/node_modules/underscore/underscore-esm-min.js +3 -3
  45. package/node_modules/underscore/underscore-esm-min.js.map +1 -1
  46. package/node_modules/underscore/underscore-esm.js +132 -115
  47. package/node_modules/underscore/underscore-esm.js.map +1 -1
  48. package/node_modules/underscore/underscore-min.js +3 -3
  49. package/node_modules/underscore/underscore-min.js.map +1 -1
  50. package/node_modules/underscore/underscore-node-f.cjs +132 -115
  51. package/node_modules/underscore/underscore-node-f.cjs.map +1 -1
  52. package/node_modules/underscore/underscore-node.cjs +2 -2
  53. package/node_modules/underscore/underscore-node.mjs +2 -2
  54. package/node_modules/underscore/underscore-umd-min.js +3 -3
  55. package/node_modules/underscore/underscore-umd-min.js.map +1 -1
  56. package/node_modules/underscore/underscore-umd.js +132 -115
  57. package/node_modules/underscore/underscore-umd.js.map +1 -1
  58. package/node_modules/underscore/underscore.js +132 -115
  59. package/package.json +1 -1
  60. package/node_modules/request/node_modules/qs/bower.json +0 -21
  61. package/node_modules/request/node_modules/qs/component.json +0 -15
  62. package/node_modules/underscore/amd/_set.js +0 -21
  63. package/node_modules/underscore/amd/set.js +0 -15
  64. package/node_modules/underscore/cjs/_set.js +0 -21
  65. package/node_modules/underscore/cjs/set.js +0 -15
@@ -1,21 +0,0 @@
1
- {
2
- "name": "qs",
3
- "main": "dist/qs.js",
4
- "homepage": "https://github.com/hapijs/qs",
5
- "authors": [
6
- "Nathan LaFreniere <quitlahok@gmail.com>"
7
- ],
8
- "description": "A querystring parser that supports nesting and arrays, with a depth limit",
9
- "keywords": [
10
- "querystring",
11
- "qs"
12
- ],
13
- "license": "BSD-3-Clause",
14
- "ignore": [
15
- "**/.*",
16
- "node_modules",
17
- "bower_components",
18
- "test",
19
- "tests"
20
- ]
21
- }
@@ -1,15 +0,0 @@
1
- {
2
- "name": "qs",
3
- "repository": "ljharb/qs",
4
- "description": "query-string parser / stringifier with nesting support",
5
- "version": "6.5.3",
6
- "keywords": ["querystring", "query", "parser"],
7
- "main": "lib/index.js",
8
- "scripts": [
9
- "lib/index.js",
10
- "lib/parse.js",
11
- "lib/stringify.js",
12
- "lib/utils.js"
13
- ],
14
- "license": "BSD-3-Clause"
15
- }
@@ -1,21 +0,0 @@
1
- define(['./isNumber', './isArray', './isObject'], function (isNumber, isArray, isObject) {
2
-
3
- function set (obj, path, value) {
4
- var key = String(path[0]);
5
-
6
- if (path.length === 1) {
7
- obj[key] = value;
8
- return;
9
- }
10
-
11
- if (!isArray(obj[key]) || !isObject(obj[key])) {
12
- var nextKey = path[1];
13
- obj[key] = isNumber(nextKey) ? [] : {};
14
- }
15
-
16
- return set(obj[key], path.slice(1), value);
17
- }
18
-
19
- return set;
20
-
21
- });
@@ -1,15 +0,0 @@
1
- define(['./isArray', './isObject', './_set'], function (isArray, isObject, _set) {
2
-
3
- // set the value in given path
4
- function set (obj, path, value) {
5
- if (!isObject(obj) || !isArray(path)) return obj;
6
- if (path.length === 0) return obj;
7
-
8
- _set(obj, path, value);
9
-
10
- return obj;
11
- }
12
-
13
- return set;
14
-
15
- });
@@ -1,21 +0,0 @@
1
- var isNumber = require('./isNumber.js');
2
- var isArray = require('./isArray.js');
3
- var isObject = require('./isObject.js');
4
-
5
- function set (obj, path, value) {
6
- var key = String(path[0]);
7
-
8
- if (path.length === 1) {
9
- obj[key] = value;
10
- return;
11
- }
12
-
13
- if (!isArray(obj[key]) || !isObject(obj[key])) {
14
- var nextKey = path[1];
15
- obj[key] = isNumber(nextKey) ? [] : {};
16
- }
17
-
18
- return set(obj[key], path.slice(1), value);
19
- }
20
-
21
- module.exports = set;
@@ -1,15 +0,0 @@
1
- var isArray = require('./isArray.js');
2
- var isObject = require('./isObject.js');
3
- var _set = require('./_set.js');
4
-
5
- // set the value in given path
6
- function set (obj, path, value) {
7
- if (!isObject(obj) || !isArray(path)) return obj;
8
- if (path.length === 0) return obj;
9
-
10
- _set(obj, path, value);
11
-
12
- return obj;
13
- }
14
-
15
- module.exports = set;