mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-06-29 09:00:44 +00:00
Update metadata
This commit is contained in:
14
node_modules/json5/CHANGELOG.md
generated
vendored
14
node_modules/json5/CHANGELOG.md
generated
vendored
@@ -1,3 +1,14 @@
|
||||
### v2.1.1 [[code][c2.1.1], [diff][d2.1.1]]
|
||||
|
||||
[c2.1.1]: https://github.com/json5/json5/tree/v2.1.1
|
||||
[d2.1.1]: https://github.com/json5/json5/compare/v2.0.1...v2.1.1
|
||||
|
||||
- New: `package.json` and `package.json5` include a `module` property so
|
||||
bundlers like webpack, rollup and parcel can take advantage of the ES Module
|
||||
build. ([#208])
|
||||
- Fix: `stringify` outputs `\0` as `\\x00` when followed by a digit. ([#210])
|
||||
- Fix: Spelling mistakes have been fixed. ([#196])
|
||||
|
||||
### v2.1.0 [[code][c2.1.0], [diff][d2.1.0]]
|
||||
|
||||
[c2.1.0]: https://github.com/json5/json5/tree/v2.1.0
|
||||
@@ -313,3 +324,6 @@ parser for the regular JSON format.
|
||||
[#181]: https://github.com/json5/json5/issues/181
|
||||
[#182]: https://github.com/json5/json5/issues/182
|
||||
[#187]: https://github.com/json5/json5/issues/187
|
||||
[#196]: https://github.com/json5/json5/issues/196
|
||||
[#208]: https://github.com/json5/json5/issues/208
|
||||
[#210]: https://github.com/json5/json5/issues/210
|
||||
|
||||
2
node_modules/json5/README.md
generated
vendored
2
node_modules/json5/README.md
generated
vendored
@@ -199,7 +199,7 @@ To report bugs or request features regarding the JSON5 data format, please
|
||||
submit an issue to the [official specification
|
||||
repository](https://github.com/json5/json5-spec).
|
||||
|
||||
To report bugs or request features regarding the JavaScript implentation of
|
||||
To report bugs or request features regarding the JavaScript implementation of
|
||||
JSON5, please submit an issue to this repository.
|
||||
|
||||
## License
|
||||
|
||||
38
node_modules/json5/dist/index.js
generated
vendored
38
node_modules/json5/dist/index.js
generated
vendored
@@ -18,7 +18,7 @@
|
||||
});
|
||||
|
||||
var _core = createCommonjsModule(function (module) {
|
||||
var core = module.exports = { version: '2.5.7' };
|
||||
var core = module.exports = { version: '2.6.5' };
|
||||
if (typeof __e == 'number') { __e = core; } // eslint-disable-line no-undef
|
||||
});
|
||||
var _core_1 = _core.version;
|
||||
@@ -114,14 +114,31 @@
|
||||
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
|
||||
};
|
||||
|
||||
var _library = false;
|
||||
|
||||
var _shared = createCommonjsModule(function (module) {
|
||||
var SHARED = '__core-js_shared__';
|
||||
var store = _global[SHARED] || (_global[SHARED] = {});
|
||||
|
||||
(module.exports = function (key, value) {
|
||||
return store[key] || (store[key] = value !== undefined ? value : {});
|
||||
})('versions', []).push({
|
||||
version: _core.version,
|
||||
mode: _library ? 'pure' : 'global',
|
||||
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
|
||||
});
|
||||
});
|
||||
|
||||
var _functionToString = _shared('native-function-to-string', Function.toString);
|
||||
|
||||
var _redefine = createCommonjsModule(function (module) {
|
||||
var SRC = _uid('src');
|
||||
|
||||
var TO_STRING = 'toString';
|
||||
var $toString = Function[TO_STRING];
|
||||
var TPL = ('' + $toString).split(TO_STRING);
|
||||
var TPL = ('' + _functionToString).split(TO_STRING);
|
||||
|
||||
_core.inspectSource = function (it) {
|
||||
return $toString.call(it);
|
||||
return _functionToString.call(it);
|
||||
};
|
||||
|
||||
(module.exports = function (O, key, val, safe) {
|
||||
@@ -141,7 +158,7 @@
|
||||
}
|
||||
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
||||
})(Function.prototype, TO_STRING, function toString() {
|
||||
return typeof this == 'function' && this[SRC] || $toString.call(this);
|
||||
return typeof this == 'function' && this[SRC] || _functionToString.call(this);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1541,15 +1558,20 @@
|
||||
|
||||
var product = '';
|
||||
|
||||
for (var i = 0, list = value; i < list.length; i += 1) {
|
||||
var c = list[i];
|
||||
|
||||
for (var i = 0; i < value.length; i++) {
|
||||
var c = value[i];
|
||||
switch (c) {
|
||||
case "'":
|
||||
case '"':
|
||||
quotes[c]++;
|
||||
product += c;
|
||||
continue
|
||||
|
||||
case '\0':
|
||||
if (util.isDigit(value[i + 1])) {
|
||||
product += '\\x00';
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
if (replacements[c]) {
|
||||
|
||||
2
node_modules/json5/dist/index.min.js
generated
vendored
2
node_modules/json5/dist/index.min.js
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/json5/dist/index.min.mjs
generated
vendored
2
node_modules/json5/dist/index.min.mjs
generated
vendored
File diff suppressed because one or more lines are too long
9
node_modules/json5/dist/index.mjs
generated
vendored
9
node_modules/json5/dist/index.mjs
generated
vendored
@@ -1253,13 +1253,20 @@ var stringify = function stringify (value, replacer, space) {
|
||||
|
||||
let product = '';
|
||||
|
||||
for (const c of value) {
|
||||
for (let i = 0; i < value.length; i++) {
|
||||
const c = value[i];
|
||||
switch (c) {
|
||||
case "'":
|
||||
case '"':
|
||||
quotes[c]++;
|
||||
product += c;
|
||||
continue
|
||||
|
||||
case '\0':
|
||||
if (util.isDigit(value[i + 1])) {
|
||||
product += '\\x00';
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
if (replacements[c]) {
|
||||
|
||||
9
node_modules/json5/lib/stringify.js
generated
vendored
9
node_modules/json5/lib/stringify.js
generated
vendored
@@ -124,13 +124,20 @@ module.exports = function stringify (value, replacer, space) {
|
||||
|
||||
let product = ''
|
||||
|
||||
for (const c of value) {
|
||||
for (let i = 0; i < value.length; i++) {
|
||||
const c = value[i]
|
||||
switch (c) {
|
||||
case "'":
|
||||
case '"':
|
||||
quotes[c]++
|
||||
product += c
|
||||
continue
|
||||
|
||||
case '\0':
|
||||
if (util.isDigit(value[i + 1])) {
|
||||
product += '\\x00'
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
if (replacements[c]) {
|
||||
|
||||
57
node_modules/json5/package.json
generated
vendored
57
node_modules/json5/package.json
generated
vendored
@@ -1,34 +1,28 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"json5@2.1.0",
|
||||
"/Users/imranismail/Projects/setup-kustomize"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "json5@2.1.0",
|
||||
"_id": "json5@2.1.0",
|
||||
"_from": "json5@^2.1.0",
|
||||
"_id": "json5@2.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==",
|
||||
"_integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==",
|
||||
"_location": "/json5",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "json5@2.1.0",
|
||||
"raw": "json5@^2.1.0",
|
||||
"name": "json5",
|
||||
"escapedName": "json5",
|
||||
"rawSpec": "2.1.0",
|
||||
"rawSpec": "^2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
"fetchSpec": "^2.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@babel/core",
|
||||
"/ts-jest"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "/Users/imranismail/Projects/setup-kustomize",
|
||||
"_resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz",
|
||||
"_shasum": "81b6cb04e9ba496f1c7005d07b4368a2638f90b6",
|
||||
"_spec": "json5@^2.1.0",
|
||||
"_where": "/Users/imranismail/Projects/setup-kustomize/node_modules/@babel/core",
|
||||
"author": {
|
||||
"name": "Aseem Kishore",
|
||||
"email": "aseem.kishore@gmail.com"
|
||||
@@ -40,6 +34,7 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/json5/json5/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Max Nanasy",
|
||||
@@ -57,23 +52,24 @@
|
||||
"dependencies": {
|
||||
"minimist": "^1.2.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "JSON for humans.",
|
||||
"devDependencies": {
|
||||
"core-js": "^2.5.7",
|
||||
"eslint": "^5.3.0",
|
||||
"eslint-config-standard": "^11.0.0",
|
||||
"eslint-plugin-import": "^2.14.0",
|
||||
"eslint-plugin-node": "^7.0.1",
|
||||
"eslint-plugin-promise": "^3.8.0",
|
||||
"eslint-plugin-standard": "^3.1.0",
|
||||
"core-js": "^2.6.5",
|
||||
"eslint": "^5.15.3",
|
||||
"eslint-config-standard": "^12.0.0",
|
||||
"eslint-plugin-import": "^2.16.0",
|
||||
"eslint-plugin-node": "^8.0.1",
|
||||
"eslint-plugin-promise": "^4.0.1",
|
||||
"eslint-plugin-standard": "^4.0.0",
|
||||
"regenerate": "^1.4.0",
|
||||
"rollup": "^0.64.1",
|
||||
"rollup-plugin-buble": "^0.19.2",
|
||||
"rollup-plugin-commonjs": "^9.1.5",
|
||||
"rollup-plugin-node-resolve": "^3.3.0",
|
||||
"rollup-plugin-buble": "^0.19.6",
|
||||
"rollup-plugin-commonjs": "^9.2.1",
|
||||
"rollup-plugin-node-resolve": "^3.4.0",
|
||||
"rollup-plugin-terser": "^1.0.1",
|
||||
"sinon": "^6.1.5",
|
||||
"tap": "^12.0.1",
|
||||
"sinon": "^6.3.5",
|
||||
"tap": "^12.6.0",
|
||||
"unicode-10.0.0": "^0.7.5"
|
||||
},
|
||||
"engines": {
|
||||
@@ -93,6 +89,7 @@
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"name": "json5",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -110,5 +107,5 @@
|
||||
"test": "tap -Rspec --100 test",
|
||||
"version": "npm run build-package && git add package.json5"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
"version": "2.1.1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user