package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. {
  2. "_args": [
  3. [
  4. "svgo@2.8.0",
  5. "/Users/mac/projects/mime/mine"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "svgo@2.8.0",
  10. "_id": "svgo@2.8.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
  13. "_location": "/svgo",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "svgo@2.8.0",
  19. "name": "svgo",
  20. "escapedName": "svgo",
  21. "rawSpec": "2.8.0",
  22. "saveSpec": null,
  23. "fetchSpec": "2.8.0"
  24. },
  25. "_requiredBy": [
  26. "/postcss-svgo"
  27. ],
  28. "_resolved": "https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz",
  29. "_spec": "2.8.0",
  30. "_where": "/Users/mac/projects/mime/mine",
  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. "picocolors": "^1.0.0",
  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.5",
  79. "node-fetch": "^2.6.2",
  80. "pixelmatch": "^5.2.1",
  81. "playwright": "^1.14.1",
  82. "pngjs": "^6.0.0",
  83. "prettier": "^2.4.0",
  84. "rollup": "^2.56.3",
  85. "rollup-plugin-terser": "^7.0.2",
  86. "tar-stream": "^2.2.0",
  87. "typescript": "^4.4.3"
  88. },
  89. "engines": {
  90. "node": ">=10.13.0"
  91. },
  92. "eslintConfig": {
  93. "parserOptions": {
  94. "ecmaVersion": "2021"
  95. },
  96. "env": {
  97. "node": true,
  98. "es2021": true
  99. },
  100. "extends": [
  101. "eslint:recommended"
  102. ],
  103. "overrides": [
  104. {
  105. "files": [
  106. "rollup.config.js"
  107. ],
  108. "parserOptions": {
  109. "sourceType": "module"
  110. }
  111. },
  112. {
  113. "files": [
  114. "**/*.test.js"
  115. ],
  116. "env": {
  117. "jest": true
  118. }
  119. }
  120. ]
  121. },
  122. "files": [
  123. "bin",
  124. "lib",
  125. "plugins",
  126. "dist",
  127. "!**/*.test.js"
  128. ],
  129. "homepage": "https://github.com/svg/svgo",
  130. "jest": {
  131. "coveragePathIgnorePatterns": [
  132. "fixtures"
  133. ]
  134. },
  135. "keywords": [
  136. "svgo",
  137. "svg",
  138. "optimize",
  139. "minify"
  140. ],
  141. "license": "MIT",
  142. "main": "./lib/svgo-node.js",
  143. "name": "svgo",
  144. "packageManager": "yarn@2.4.3",
  145. "prettier": {
  146. "singleQuote": true
  147. },
  148. "repository": {
  149. "type": "git",
  150. "url": "git://github.com/svg/svgo.git"
  151. },
  152. "scripts": {
  153. "fix": "eslint --ignore-path .gitignore --fix . && prettier --write \"**/*.js\" --ignore-path .gitignore",
  154. "lint": "eslint --ignore-path .gitignore . && prettier --check \"**/*.js\" --ignore-path .gitignore",
  155. "prepublishOnly": "rm -rf dist && rollup -c",
  156. "test": "NODE_OPTIONS=--experimental-vm-modules jest --maxWorkers=4 --coverage",
  157. "test-browser": "rollup -c && node ./test/browser.js",
  158. "test-regression": "node ./test/regression-extract.js && NO_DIFF=1 node ./test/regression.js",
  159. "typecheck": "tsc"
  160. },
  161. "version": "2.8.0"
  162. }