update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

61
node_modules/i18next/package.json generated vendored
View File

@@ -1,33 +1,28 @@
{
"_args": [
[
"i18next@15.1.3",
"D:\\Projects\\siag\\vanillajs-seed"
]
],
"_from": "i18next@15.1.3",
"_id": "i18next@15.1.3",
"_from": "i18next@^19.4.5",
"_id": "i18next@19.4.5",
"_inBundle": false,
"_integrity": "sha512-hN2DZLoRSY2h/RYeNqth5XxV4N1ekKGSJDCGhFmmuXkOCAfK5CkUG4VBv9OBXrvf93xApv0KKBVrb0zJP31EKg==",
"_integrity": "sha512-aLvSsURoupi3x9IndmV6+m3IGhzLzhYv7Gw+//K3ovdliyGcFRV0I1MuddI0Bk/zR7BG1U+kJOjeHFUcUIdEgg==",
"_location": "/i18next",
"_phantomChildren": {},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "i18next@15.1.3",
"raw": "i18next@^19.4.5",
"name": "i18next",
"escapedName": "i18next",
"rawSpec": "15.1.3",
"rawSpec": "^19.4.5",
"saveSpec": null,
"fetchSpec": "15.1.3"
"fetchSpec": "^19.4.5"
},
"_requiredBy": [
"/",
"/i18next-scanner"
],
"_resolved": "https://registry.npmjs.org/i18next/-/i18next-15.1.3.tgz",
"_spec": "15.1.3",
"_where": "D:\\Projects\\siag\\vanillajs-seed",
"_resolved": "https://registry.npmjs.org/i18next/-/i18next-19.4.5.tgz",
"_shasum": "f9ea8bbb48d1ec66bc3436f0bb74a16b11821e11",
"_spec": "i18next@^19.4.5",
"_where": "D:\\Projects\\vanillajs-seed",
"author": {
"name": "Jan Mühlemann",
"email": "jan.muehlemann@gmail.com",
@@ -36,12 +31,13 @@
"bugs": {
"url": "https://github.com/i18next/i18next/issues"
},
"bundleDependencies": false,
"dependencies": {
"@babel/runtime": "^7.3.1"
},
"deprecated": false,
"description": "i18next internationalization framework",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
@@ -57,6 +53,7 @@
"browserify-istanbul": "2.0.0",
"chai": "3.5.0",
"coveralls": "2.11.16",
"cpy-cli": "^2.0.0",
"dtslint": "^0.4.2",
"eslint": "3.15.0",
"eslint-config-airbnb": "14.1.0",
@@ -83,7 +80,6 @@
"karma-sinon": "1.0.5",
"karma-spec-reporter": "0.0.26",
"lint-staged": "^8.1.0",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"prettier": "^1.15.3",
"rimraf": "2.5.4",
@@ -94,9 +90,8 @@
"rollup-plugin-terser": "^4.0.4",
"sinon": "1.17.7",
"tslint": "^5.12.1",
"typescript": "^3.2.4",
"watchify": "3.9.0",
"yargs": "6.6.0"
"typescript": "^3.6.4",
"watchify": "3.9.0"
},
"homepage": "http://i18next.com",
"husky": {
@@ -104,7 +99,6 @@
"pre-commit": "lint-staged"
}
},
"jsnext:main": "dist/es/index.js",
"keywords": [
"i18next",
"internationalization",
@@ -124,29 +118,21 @@
]
},
"ignore": [
"**/dist/**/*.js",
"**/i18next.js",
"**/i18next.min.js"
]
},
"main": "./index.js",
"module": "dist/es/index.js",
"main": "./dist/cjs/i18next.js",
"module": "./dist/esm/i18next.js",
"name": "i18next",
"repository": {
"type": "git",
"url": "git+https://github.com/i18next/i18next.git"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run copy",
"build:amd": "rollup -c rollup.config.js --format amd && rollup -c rollup.config.js --format umd --uglify",
"build:cjs": "babel src --out-dir dist/commonjs",
"build:es": "BABEL_ENV=jsnext babel src --out-dir dist/es",
"build:iife": "rollup -c rollup.config.js --format iife && rollup -c rollup.config.js --format iife --uglify",
"build:umd": "rollup -c rollup.config.js --format umd && rollup -c rollup.config.js --format umd --uglify",
"clean": "rimraf dist && mkdirp dist",
"copy": "cp ./dist/umd/i18next.min.js ./i18next.min.js && cp ./dist/umd/i18next.js ./i18next.js",
"build": "rimraf dist && rollup -c && cpy \"./dist/umd/*.js\" ./",
"postversion": "git push && git push --tags",
"pretest": "npm run test:typescript",
"pretest": "npm run test:typescript && npm run test:typescript:noninterop",
"prettier": "prettier --write \"{,**/}*.{ts,tsx,js,json,md}\"",
"preversion": "npm run test && npm run build && git push",
"tdd": "karma start karma.conf.js",
@@ -154,8 +140,9 @@
"test": "npm run test:new && npm run test:compat",
"test:compat": "karma start karma.backward.conf.js --singleRun",
"test:new": "karma start karma.conf.js --singleRun",
"test:typescript": "tslint --project tsconfig.json"
"test:typescript": "tslint --project tsconfig.json",
"test:typescript:noninterop": "tslint --project tsconfig.nonEsModuleInterop.json"
},
"types": "index.d.ts",
"version": "15.1.3"
"types": "./index.d.ts",
"version": "19.4.5"
}