source: trip-planner-front/node_modules/svgo/package.json@ 8d391a1

Last change on this file since 8d391a1 was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 3.8 KB
Line 
1{
2 "_from": "svgo@^2.7.0",
3 "_id": "svgo@2.8.0",
4 "_inBundle": false,
5 "_integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
6 "_location": "/svgo",
7 "_phantomChildren": {},
8 "_requested": {
9 "type": "range",
10 "registry": true,
11 "raw": "svgo@^2.7.0",
12 "name": "svgo",
13 "escapedName": "svgo",
14 "rawSpec": "^2.7.0",
15 "saveSpec": null,
16 "fetchSpec": "^2.7.0"
17 },
18 "_requiredBy": [
19 "/postcss-svgo"
20 ],
21 "_resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
22 "_shasum": "4ff80cce6710dc2795f0c7c74101e6764cfccd24",
23 "_spec": "svgo@^2.7.0",
24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\postcss-svgo",
25 "author": {
26 "name": "Kir Belevich",
27 "email": "kir@belevi.ch",
28 "url": "https://github.com/deepsweet"
29 },
30 "bin": {
31 "svgo": "bin/svgo"
32 },
33 "bugs": {
34 "url": "https://github.com/svg/svgo/issues"
35 },
36 "bundleDependencies": false,
37 "contributors": [
38 {
39 "name": "Sergey Belov",
40 "email": "peimei@ya.ru",
41 "url": "https://github.com/arikon"
42 },
43 {
44 "name": "Lev Solntsev",
45 "email": "lev.sun@ya.ru",
46 "url": "https://github.com/GreLI"
47 },
48 {
49 "name": "Bogdan Chadkin",
50 "email": "trysound@yandex.ru",
51 "url": "https://github.com/TrySound"
52 }
53 ],
54 "dependencies": {
55 "@trysound/sax": "0.2.0",
56 "commander": "^7.2.0",
57 "css-select": "^4.1.3",
58 "css-tree": "^1.1.3",
59 "csso": "^4.2.0",
60 "picocolors": "^1.0.0",
61 "stable": "^0.1.8"
62 },
63 "deprecated": false,
64 "description": "Nodejs-based tool for optimizing SVG vector graphics files",
65 "devDependencies": {
66 "@rollup/plugin-commonjs": "^20.0.0",
67 "@rollup/plugin-json": "^4.1.0",
68 "@rollup/plugin-node-resolve": "^13.0.4",
69 "@types/css-tree": "^1.0.6",
70 "@types/csso": "^4.2.0",
71 "@types/jest": "^27.0.1",
72 "del": "^6.0.0",
73 "eslint": "^7.32.0",
74 "jest": "^27.2.5",
75 "node-fetch": "^2.6.2",
76 "pixelmatch": "^5.2.1",
77 "playwright": "^1.14.1",
78 "pngjs": "^6.0.0",
79 "prettier": "^2.4.0",
80 "rollup": "^2.56.3",
81 "rollup-plugin-terser": "^7.0.2",
82 "tar-stream": "^2.2.0",
83 "typescript": "^4.4.3"
84 },
85 "engines": {
86 "node": ">=10.13.0"
87 },
88 "eslintConfig": {
89 "parserOptions": {
90 "ecmaVersion": "2021"
91 },
92 "env": {
93 "node": true,
94 "es2021": true
95 },
96 "extends": [
97 "eslint:recommended"
98 ],
99 "overrides": [
100 {
101 "files": [
102 "rollup.config.js"
103 ],
104 "parserOptions": {
105 "sourceType": "module"
106 }
107 },
108 {
109 "files": [
110 "**/*.test.js"
111 ],
112 "env": {
113 "jest": true
114 }
115 }
116 ]
117 },
118 "files": [
119 "bin",
120 "lib",
121 "plugins",
122 "dist",
123 "!**/*.test.js"
124 ],
125 "homepage": "https://github.com/svg/svgo",
126 "jest": {
127 "coveragePathIgnorePatterns": [
128 "fixtures"
129 ]
130 },
131 "keywords": [
132 "svgo",
133 "svg",
134 "optimize",
135 "minify"
136 ],
137 "license": "MIT",
138 "main": "./lib/svgo-node.js",
139 "name": "svgo",
140 "packageManager": "yarn@2.4.3",
141 "prettier": {
142 "singleQuote": true
143 },
144 "repository": {
145 "type": "git",
146 "url": "git://github.com/svg/svgo.git"
147 },
148 "scripts": {
149 "fix": "eslint --ignore-path .gitignore --fix . && prettier --write \"**/*.js\" --ignore-path .gitignore",
150 "lint": "eslint --ignore-path .gitignore . && prettier --check \"**/*.js\" --ignore-path .gitignore",
151 "prepublishOnly": "rm -rf dist && rollup -c",
152 "test": "NODE_OPTIONS=--experimental-vm-modules jest --maxWorkers=4 --coverage",
153 "test-browser": "rollup -c && node ./test/browser.js",
154 "test-regression": "node ./test/regression-extract.js && NO_DIFF=1 node ./test/regression.js",
155 "typecheck": "tsc"
156 },
157 "version": "2.8.0"
158}
Note: See TracBrowser for help on using the repository browser.