source: trip-planner-front/node_modules/svgo/package.json@ 59329aa

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

adding photos

  • Property mode set to 100644
File size: 3.8 KB
Line 
1{
2 "_args": [
3 [
4 "svgo@2.7.0",
5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
6 ]
7 ],
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"
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",
31 "author": {
32 "name": "Kir Belevich",
33 "email": "kir@belevi.ch",
34 "url": "https://github.com/deepsweet"
35 },
36 "bin": {
37 "svgo": "bin/svgo"
38 },
39 "bugs": {
40 "url": "https://github.com/svg/svgo/issues"
41 },
42 "contributors": [
43 {
44 "name": "Sergey Belov",
45 "email": "peimei@ya.ru",
46 "url": "https://github.com/arikon"
47 },
48 {
49 "name": "Lev Solntsev",
50 "email": "lev.sun@ya.ru",
51 "url": "https://github.com/GreLI"
52 },
53 {
54 "name": "Bogdan Chadkin",
55 "email": "trysound@yandex.ru",
56 "url": "https://github.com/TrySound"
57 }
58 ],
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"
67 },
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"
90 },
91 "engines": {
92 "node": ">=10.13.0"
93 },
94 "eslintConfig": {
95 "parserOptions": {
96 "ecmaVersion": "2021"
97 },
98 "env": {
99 "node": true,
100 "es2021": true
101 },
102 "extends": [
103 "eslint:recommended"
104 ],
105 "overrides": [
106 {
107 "files": [
108 "rollup.config.js"
109 ],
110 "parserOptions": {
111 "sourceType": "module"
112 }
113 },
114 {
115 "files": [
116 "**/*.test.js"
117 ],
118 "env": {
119 "jest": true
120 }
121 }
122 ]
123 },
124 "files": [
125 "bin",
126 "lib",
127 "plugins",
128 "dist",
129 "!**/*.test.js"
130 ],
131 "homepage": "https://github.com/svg/svgo",
132 "jest": {
133 "coveragePathIgnorePatterns": [
134 "fixtures"
135 ]
136 },
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
148 },
149 "repository": {
150 "type": "git",
151 "url": "git://github.com/svg/svgo.git"
152 },
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"
161 },
162 "version": "2.7.0"
163}
Note: See TracBrowser for help on using the repository browser.