Changeset 59329aa for trip-planner-front/node_modules/terser/package.json
- 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/package.json
rceaed42 r59329aa 1 1 { 2 "name": "terser", 3 "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", 4 "homepage": "https://terser.org", 5 "author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)", 6 "license": "BSD-2-Clause", 7 "version": "5.7.1", 8 "engines": { 9 "node": ">=10" 2 "_args": [ 3 [ 4 "terser@5.7.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "terser@5.7.1", 10 "_id": "terser@5.7.1", 11 "_inBundle": false, 12 "_integrity": "sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==", 13 "_location": "/terser", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "terser@5.7.1", 19 "name": "terser", 20 "escapedName": "terser", 21 "rawSpec": "5.7.1", 22 "saveSpec": null, 23 "fetchSpec": "5.7.1" 10 24 }, 11 "maintainers": [ 12 "Fábio Santos <fabiosantosart@gmail.com>" 25 "_requiredBy": [ 26 "/@angular-devkit/build-angular", 27 "/terser-webpack-plugin" 13 28 ], 14 "repository": "https://github.com/terser/terser", 15 "main": "dist/bundle.min.js", 16 "type": "module", 17 "module": "./main.js", 18 "exports": { 19 ".": [ 20 { 21 "import": "./main.js", 22 "require": "./dist/bundle.min.js" 23 }, 24 "./dist/bundle.min.js" 25 ], 26 "./package": "./package.json", 27 "./package.json": "./package.json", 28 "./bin/terser": "./bin/terser" 29 "_resolved": "https://registry.npmjs.org/terser/-/terser-5.7.1.tgz", 30 "_spec": "5.7.1", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "Mihai Bazon", 34 "email": "mihai.bazon@gmail.com", 35 "url": "http://lisperator.net/" 29 36 }, 30 "types": "tools/terser.d.ts",31 37 "bin": { 32 38 "terser": "bin/terser" 33 39 }, 34 "files": [ 35 "bin", 36 "dist", 37 "lib", 38 "tools", 39 "LICENSE", 40 "README.md", 41 "CHANGELOG.md", 42 "PATRONS.md", 43 "main.js" 44 ], 40 "bugs": { 41 "url": "https://github.com/terser/terser/issues" 42 }, 45 43 "dependencies": { 46 44 "commander": "^2.20.0", … … 48 46 "source-map-support": "~0.5.19" 49 47 }, 48 "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", 50 49 "devDependencies": { 51 50 "@ls-lint/ls-lint": "^1.9.2", … … 61 60 "semver": "^7.3.4" 62 61 }, 63 "scripts": { 64 "test": "node test/compress.js && mocha test/mocha", 65 "test:compress": "node test/compress.js", 66 "test:mocha": "mocha test/mocha", 67 "lint": "eslint lib", 68 "lint-fix": "eslint --fix lib", 69 "ls-lint": "ls-lint", 70 "build": "rimraf dist/bundle* && rollup --config --silent", 71 "prepare": "npm run build", 72 "postversion": "echo 'Remember to update the changelog!'" 62 "engines": { 63 "node": ">=10" 73 64 }, 74 "keywords": [75 "uglify",76 "terser",77 "uglify-es",78 "uglify-js",79 "minify",80 "minifier",81 "javascript",82 "ecmascript",83 "es5",84 "es6",85 "es7",86 "es8",87 "es2015",88 "es2016",89 "es2017",90 "async",91 "await"92 ],93 65 "eslintConfig": { 94 66 "parserOptions": { … … 142 114 } 143 115 }, 116 "exports": { 117 ".": [ 118 { 119 "import": "./main.js", 120 "require": "./dist/bundle.min.js" 121 }, 122 "./dist/bundle.min.js" 123 ], 124 "./package": "./package.json", 125 "./package.json": "./package.json", 126 "./bin/terser": "./bin/terser" 127 }, 128 "files": [ 129 "bin", 130 "dist", 131 "lib", 132 "tools", 133 "LICENSE", 134 "README.md", 135 "CHANGELOG.md", 136 "PATRONS.md", 137 "main.js" 138 ], 139 "homepage": "https://terser.org", 140 "keywords": [ 141 "uglify", 142 "terser", 143 "uglify-es", 144 "uglify-js", 145 "minify", 146 "minifier", 147 "javascript", 148 "ecmascript", 149 "es5", 150 "es6", 151 "es7", 152 "es8", 153 "es2015", 154 "es2016", 155 "es2017", 156 "async", 157 "await" 158 ], 159 "license": "BSD-2-Clause", 160 "main": "dist/bundle.min.js", 161 "maintainers": [ 162 { 163 "name": "Fábio Santos", 164 "email": "fabiosantosart@gmail.com" 165 } 166 ], 167 "module": "./main.js", 168 "name": "terser", 144 169 "pre-commit": [ 145 170 "build", … … 147 172 "ls-lint", 148 173 "test" 149 ] 174 ], 175 "repository": { 176 "type": "git", 177 "url": "git+https://github.com/terser/terser.git" 178 }, 179 "scripts": { 180 "build": "rimraf dist/bundle* && rollup --config --silent", 181 "lint": "eslint lib", 182 "lint-fix": "eslint --fix lib", 183 "ls-lint": "ls-lint", 184 "postversion": "echo 'Remember to update the changelog!'", 185 "prepare": "npm run build", 186 "test": "node test/compress.js && mocha test/mocha", 187 "test:compress": "node test/compress.js", 188 "test:mocha": "mocha test/mocha" 189 }, 190 "type": "module", 191 "types": "tools/terser.d.ts", 192 "version": "5.7.1" 150 193 }
Note:
See TracChangeset
for help on using the changeset viewer.