1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 12:20:04 +02:00

update node modules

This commit is contained in:
s2
2021-05-07 15:56:33 +02:00
parent d81e8e9fb8
commit 3ec373077c
550 changed files with 84712 additions and 15991 deletions

85
node_modules/terser/package.json generated vendored
View File

@@ -1,26 +1,27 @@
{
"_from": "terser@^4.8.0",
"_id": "terser@4.8.0",
"_from": "terser@5.7.0",
"_id": "terser@5.7.0",
"_inBundle": false,
"_integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
"_integrity": "sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==",
"_location": "/terser",
"_phantomChildren": {},
"_requested": {
"type": "range",
"type": "version",
"registry": true,
"raw": "terser@^4.8.0",
"raw": "terser@5.7.0",
"name": "terser",
"escapedName": "terser",
"rawSpec": "^4.8.0",
"rawSpec": "5.7.0",
"saveSpec": null,
"fetchSpec": "^4.8.0"
"fetchSpec": "5.7.0"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
"_shasum": "63056343d7c70bb29f3af665865a46fe03a0df17",
"_spec": "terser@^4.8.0",
"_resolved": "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz",
"_shasum": "a761eeec206bc87b605ab13029876ead938ae693",
"_spec": "terser@5.7.0",
"_where": "D:\\Projects\\minifyfromhtml",
"author": {
"name": "Mihai Bazon",
@@ -36,33 +37,36 @@
"bundleDependencies": false,
"dependencies": {
"commander": "^2.20.0",
"source-map": "~0.6.1",
"source-map-support": "~0.5.12"
"source-map": "~0.7.2",
"source-map-support": "~0.5.19"
},
"deprecated": false,
"description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+",
"devDependencies": {
"acorn": "^7.1.1",
"astring": "^1.4.1",
"eslint": "^6.3.0",
"@ls-lint/ls-lint": "^1.9.2",
"acorn": "^8.0.5",
"astring": "^1.6.2",
"eslint": "^7.19.0",
"eslump": "^2.0.0",
"mocha": "^7.1.2",
"mochallel": "^2.0.0",
"esm": "^3.2.25",
"mocha": "^8.2.1",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0",
"rollup": "2.0.6",
"rollup-plugin-terser": "5.3.0",
"semver": "^7.1.3"
"rimraf": "^3.0.2",
"rollup": "2.38.4",
"semver": "^7.3.4"
},
"engines": {
"node": ">=6.0.0"
"node": ">=10"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
"sourceType": "module",
"ecmaVersion": "2020"
},
"env": {
"es6": true
"node": true,
"browser": true,
"es2020": true
},
"globals": {
"describe": false,
@@ -89,7 +93,7 @@
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_$"
"varsIgnorePattern": "^_"
}
],
"no-tabs": "error",
@@ -105,14 +109,28 @@
]
}
},
"exports": {
".": [
{
"import": "./main.js",
"require": "./dist/bundle.min.js"
},
"./dist/bundle.min.js"
],
"./package": "./package.json",
"./package.json": "./package.json",
"./bin/terser": "./bin/terser"
},
"files": [
"bin",
"dist",
"lib",
"tools",
"LICENSE",
"README.md",
"CHANGELOG.md",
"PATRONS.md"
"PATRONS.md",
"main.js"
],
"homepage": "https://terser.org",
"keywords": [
@@ -142,9 +160,12 @@
"email": "fabiosantosart@gmail.com"
}
],
"module": "./main.js",
"name": "terser",
"pre-commit": [
"build",
"lint-fix",
"ls-lint",
"test"
],
"repository": {
@@ -152,15 +173,17 @@
"url": "git+https://github.com/terser/terser.git"
},
"scripts": {
"build": "rimraf dist/* && rollup --config --silent",
"build": "rimraf dist/bundle* && rollup --config --silent",
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"ls-lint": "ls-lint",
"postversion": "echo 'Remember to update the changelog!'",
"prepare": "npm run build",
"test": "npm run build -- --configTest && node test/run-tests.js",
"test:compress": "npm run build -- --configTest && node test/compress.js",
"test:mocha": "npm run build -- --configTest && node test/mocha.js"
"test": "node test/compress.js && mocha test/mocha",
"test:compress": "node test/compress.js",
"test:mocha": "mocha test/mocha"
},
"type": "module",
"types": "tools/terser.d.ts",
"version": "4.8.0"
"version": "5.7.0"
}