Changeset 59329aa for trip-planner-front/node_modules/svgo
- 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/svgo/package.json
rceaed42 r59329aa 1 1 { 2 "name": "svgo", 3 "version": "2.7.0", 4 "description": "Nodejs-based tool for optimizing SVG vector graphics files", 5 "keywords": [ 6 "svgo", 7 "svg", 8 "optimize", 9 "minify" 2 "_args": [ 3 [ 4 "svgo@2.7.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 10 7 ], 11 "homepage": "https://github.com/svg/svgo", 12 "bugs": { 13 "url": "https://github.com/svg/svgo/issues" 8 "_development": true, 9 "_from": "svgo@2.7.0", 10 "_id": "svgo@2.7.0", 11 "_inBundle": false, 12 "_integrity": "sha512-aDLsGkre4fTDCWvolyW+fs8ZJFABpzLXbtdK1y71CKnHzAnpDxKXPj2mNKj+pyOXUCzFHzuxRJ94XOFygOWV3w==", 13 "_location": "/svgo", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "svgo@2.7.0", 19 "name": "svgo", 20 "escapedName": "svgo", 21 "rawSpec": "2.7.0", 22 "saveSpec": null, 23 "fetchSpec": "2.7.0" 14 24 }, 25 "_requiredBy": [ 26 "/postcss-svgo" 27 ], 28 "_resolved": "https://registry.npmjs.org/svgo/-/svgo-2.7.0.tgz", 29 "_spec": "2.7.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 15 31 "author": { 16 32 "name": "Kir Belevich", 17 33 "email": "kir@belevi.ch", 18 34 "url": "https://github.com/deepsweet" 35 }, 36 "bin": { 37 "svgo": "bin/svgo" 38 }, 39 "bugs": { 40 "url": "https://github.com/svg/svgo/issues" 19 41 }, 20 42 "contributors": [ … … 35 57 } 36 58 ], 37 "repository": { 38 "type": "git", 39 "url": "git://github.com/svg/svgo.git" 59 "dependencies": { 60 "@trysound/sax": "0.2.0", 61 "commander": "^7.2.0", 62 "css-select": "^4.1.3", 63 "css-tree": "^1.1.3", 64 "csso": "^4.2.0", 65 "nanocolors": "^0.1.12", 66 "stable": "^0.1.8" 40 67 }, 41 "main": "./lib/svgo-node.js", 42 "bin": { 43 "svgo": "./bin/svgo" 68 "description": "Nodejs-based tool for optimizing SVG vector graphics files", 69 "devDependencies": { 70 "@rollup/plugin-commonjs": "^20.0.0", 71 "@rollup/plugin-json": "^4.1.0", 72 "@rollup/plugin-node-resolve": "^13.0.4", 73 "@types/css-tree": "^1.0.6", 74 "@types/csso": "^4.2.0", 75 "@types/jest": "^27.0.1", 76 "del": "^6.0.0", 77 "eslint": "^7.32.0", 78 "jest": "^27.2.1", 79 "mock-stdin": "^1.0.0", 80 "node-fetch": "^2.6.2", 81 "pixelmatch": "^5.2.1", 82 "playwright": "^1.14.1", 83 "pngjs": "^6.0.0", 84 "prettier": "^2.4.0", 85 "rollup": "^2.56.3", 86 "rollup-plugin-terser": "^7.0.2", 87 "strip-ansi": "^6.0.0", 88 "tar-stream": "^2.2.0", 89 "typescript": "^4.4.3" 44 90 }, 45 "files": [ 46 "bin", 47 "lib", 48 "plugins", 49 "dist", 50 "!**/*.test.js" 51 ], 52 "scripts": { 53 "test": "NODE_OPTIONS=--experimental-vm-modules jest --maxWorkers=3 --coverage", 54 "lint": "eslint --ignore-path .gitignore . && prettier --check \"**/*.js\" --ignore-path .gitignore", 55 "fix": "eslint --ignore-path .gitignore --fix . && prettier --write \"**/*.js\" --ignore-path .gitignore", 56 "typecheck": "tsc", 57 "test-browser": "rollup -c && node ./test/browser.js", 58 "test-regression": "node ./test/regression-extract.js && NO_DIFF=1 node ./test/regression.js", 59 "prepublishOnly": "rm -rf dist && rollup -c" 60 }, 61 "prettier": { 62 "singleQuote": true 91 "engines": { 92 "node": ">=10.13.0" 63 93 }, 64 94 "eslintConfig": { … … 92 122 ] 93 123 }, 124 "files": [ 125 "bin", 126 "lib", 127 "plugins", 128 "dist", 129 "!**/*.test.js" 130 ], 131 "homepage": "https://github.com/svg/svgo", 94 132 "jest": { 95 133 "coveragePathIgnorePatterns": [ … … 97 135 ] 98 136 }, 99 "dependencies": { 100 "@trysound/sax": "0.2.0", 101 "commander": "^7.2.0", 102 "css-select": "^4.1.3", 103 "css-tree": "^1.1.3", 104 "csso": "^4.2.0", 105 "nanocolors": "^0.1.12", 106 "stable": "^0.1.8" 137 "keywords": [ 138 "svgo", 139 "svg", 140 "optimize", 141 "minify" 142 ], 143 "license": "MIT", 144 "main": "./lib/svgo-node.js", 145 "name": "svgo", 146 "prettier": { 147 "singleQuote": true 107 148 }, 108 "devDependencies": { 109 "@rollup/plugin-commonjs": "^20.0.0", 110 "@rollup/plugin-json": "^4.1.0", 111 "@rollup/plugin-node-resolve": "^13.0.4", 112 "@types/css-tree": "^1.0.6", 113 "@types/csso": "^4.2.0", 114 "@types/jest": "^27.0.1", 115 "del": "^6.0.0", 116 "eslint": "^7.32.0", 117 "jest": "^27.2.1", 118 "mock-stdin": "^1.0.0", 119 "node-fetch": "^2.6.2", 120 "pixelmatch": "^5.2.1", 121 "playwright": "^1.14.1", 122 "pngjs": "^6.0.0", 123 "prettier": "^2.4.0", 124 "rollup": "^2.56.3", 125 "rollup-plugin-terser": "^7.0.2", 126 "strip-ansi": "^6.0.0", 127 "tar-stream": "^2.2.0", 128 "typescript": "^4.4.3" 149 "repository": { 150 "type": "git", 151 "url": "git://github.com/svg/svgo.git" 129 152 }, 130 "engines": { 131 "node": ">=10.13.0" 153 "scripts": { 154 "fix": "eslint --ignore-path .gitignore --fix . && prettier --write \"**/*.js\" --ignore-path .gitignore", 155 "lint": "eslint --ignore-path .gitignore . && prettier --check \"**/*.js\" --ignore-path .gitignore", 156 "prepublishOnly": "rm -rf dist && rollup -c", 157 "test": "NODE_OPTIONS=--experimental-vm-modules jest --maxWorkers=3 --coverage", 158 "test-browser": "rollup -c && node ./test/browser.js", 159 "test-regression": "node ./test/regression-extract.js && NO_DIFF=1 node ./test/regression.js", 160 "typecheck": "tsc" 132 161 }, 133 " license": "MIT"162 "version": "2.7.0" 134 163 }
Note:
See TracChangeset
for help on using the changeset viewer.