- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/terser-webpack-plugin/package.json
rceaed42 r59329aa 1 1 { 2 "name": "terser-webpack-plugin", 3 "version": "5.1.4", 4 "description": "Terser plugin for webpack", 5 "license": "MIT", 6 "repository": "webpack-contrib/terser-webpack-plugin", 7 "author": "webpack Contrib Team", 8 "homepage": "https://github.com/webpack-contrib/terser-webpack-plugin", 9 "bugs": "https://github.com/webpack-contrib/terser-webpack-plugin/issues", 10 "funding": { 11 "type": "opencollective", 12 "url": "https://opencollective.com/webpack" 2 "_args": [ 3 [ 4 "terser-webpack-plugin@5.1.4", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "terser-webpack-plugin@5.1.4", 10 "_id": "terser-webpack-plugin@5.1.4", 11 "_inBundle": false, 12 "_integrity": "sha512-C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==", 13 "_location": "/terser-webpack-plugin", 14 "_phantomChildren": { 15 "@types/json-schema": "7.0.9", 16 "fast-deep-equal": "3.1.3", 17 "fast-json-stable-stringify": "2.1.0", 18 "uri-js": "4.4.1" 13 19 }, 14 "main": "dist/cjs.js", 15 "engines": { 16 "node": ">= 10.13.0" 20 "_requested": { 21 "type": "version", 22 "registry": true, 23 "raw": "terser-webpack-plugin@5.1.4", 24 "name": "terser-webpack-plugin", 25 "escapedName": "terser-webpack-plugin", 26 "rawSpec": "5.1.4", 27 "saveSpec": null, 28 "fetchSpec": "5.1.4" 17 29 }, 18 "scripts": { 19 "start": "npm run build -- -w", 20 "clean": "del-cli dist", 21 "prebuild": "npm run clean", 22 "_build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write", 23 "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", 24 "build": "npm-run-all -p \"build:**\"", 25 "commitlint": "commitlint --from=master", 26 "security": "npm audit --production", 27 "lint:prettier": "prettier --list-different .", 28 "lint:js": "eslint --cache .", 29 "lint:types": "tsc --pretty --noEmit", 30 "lint": "npm-run-all -l -p \"lint:**\"", 31 "test:only": "cross-env NODE_ENV=test jest", 32 "test:watch": "npm run test:only -- --watch", 33 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 34 "pretest": "npm run lint", 35 "test": "npm run test:coverage", 36 "prepare": "husky install && npm run build", 37 "release": "standard-version" 30 "_requiredBy": [ 31 "/@angular-devkit/build-angular", 32 "/webpack" 33 ], 34 "_resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz", 35 "_spec": "5.1.4", 36 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 37 "author": { 38 "name": "webpack Contrib Team" 38 39 }, 39 "files": [ 40 "dist", 41 "types" 42 ], 43 "peerDependencies": { 44 "webpack": "^5.1.0" 40 "bugs": { 41 "url": "https://github.com/webpack-contrib/terser-webpack-plugin/issues" 45 42 }, 46 43 "dependencies": { … … 52 49 "terser": "^5.7.0" 53 50 }, 51 "description": "Terser plugin for webpack", 54 52 "devDependencies": { 55 53 "@babel/cli": "^7.14.5", … … 81 79 "worker-loader": "^3.0.8" 82 80 }, 81 "engines": { 82 "node": ">= 10.13.0" 83 }, 84 "files": [ 85 "dist", 86 "types" 87 ], 88 "funding": { 89 "type": "opencollective", 90 "url": "https://opencollective.com/webpack" 91 }, 92 "homepage": "https://github.com/webpack-contrib/terser-webpack-plugin", 83 93 "keywords": [ 84 94 "uglify", … … 97 107 "optimize", 98 108 "optimizer" 99 ] 109 ], 110 "license": "MIT", 111 "main": "dist/cjs.js", 112 "name": "terser-webpack-plugin", 113 "peerDependencies": { 114 "webpack": "^5.1.0" 115 }, 116 "repository": { 117 "type": "git", 118 "url": "git+https://github.com/webpack-contrib/terser-webpack-plugin.git" 119 }, 120 "scripts": { 121 "_build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write", 122 "build": "npm-run-all -p \"build:**\"", 123 "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", 124 "clean": "del-cli dist", 125 "commitlint": "commitlint --from=master", 126 "lint": "npm-run-all -l -p \"lint:**\"", 127 "lint:js": "eslint --cache .", 128 "lint:prettier": "prettier --list-different .", 129 "lint:types": "tsc --pretty --noEmit", 130 "prebuild": "npm run clean", 131 "prepare": "husky install && npm run build", 132 "pretest": "npm run lint", 133 "release": "standard-version", 134 "security": "npm audit --production", 135 "start": "npm run build -- -w", 136 "test": "npm run test:coverage", 137 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 138 "test:only": "cross-env NODE_ENV=test jest", 139 "test:watch": "npm run test:only -- --watch" 140 }, 141 "version": "5.1.4" 100 142 }
Note:
See TracChangeset
for help on using the changeset viewer.