web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.7 KiB

  1. {
  2. "name": "svgo",
  3. "version": "1.3.2",
  4. "description": "Nodejs-based tool for optimizing SVG vector graphics files",
  5. "keywords": [
  6. "svgo",
  7. "svg",
  8. "optimize",
  9. "minify"
  10. ],
  11. "homepage": "https://github.com/svg/svgo",
  12. "bugs": {
  13. "url": "https://github.com/svg/svgo/issues"
  14. },
  15. "author": {
  16. "name": "Kir Belevich",
  17. "email": "kir@belevi.ch",
  18. "url": "https://github.com/deepsweet"
  19. },
  20. "contributors": [
  21. {
  22. "name": "Sergey Belov",
  23. "email": "peimei@ya.ru",
  24. "url": "http://github.com/arikon"
  25. },
  26. {
  27. "name": "Lev Solntsev",
  28. "email": "lev.sun@ya.ru",
  29. "url": "http://github.com/GreLI"
  30. }
  31. ],
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/svg/svgo.git"
  35. },
  36. "main": "./lib/svgo.js",
  37. "bin": {
  38. "svgo": "./bin/svgo"
  39. },
  40. "directories": {
  41. "bin": "./bin",
  42. "lib": "./lib",
  43. "example": "./examples"
  44. },
  45. "scripts": {
  46. "test": "set NODE_ENV=test && mocha",
  47. "lint": "jshint --show-non-errors .",
  48. "jshint": "npm run lint"
  49. },
  50. "dependencies": {
  51. "chalk": "^2.4.1",
  52. "coa": "^2.0.2",
  53. "css-select": "^2.0.0",
  54. "css-select-base-adapter": "^0.1.1",
  55. "css-tree": "1.0.0-alpha.37",
  56. "csso": "^4.0.2",
  57. "js-yaml": "^3.13.1",
  58. "mkdirp": "~0.5.1",
  59. "object.values": "^1.1.0",
  60. "sax": "~1.2.4",
  61. "stable": "^0.1.8",
  62. "unquote": "~1.1.1",
  63. "util.promisify": "~1.0.0"
  64. },
  65. "devDependencies": {
  66. "coveralls": "^3.0.7",
  67. "fs-extra": "~8.1.0",
  68. "istanbul": "~0.4.5",
  69. "jshint": "~2.10.2",
  70. "mocha": "~6.2.2",
  71. "mocha-istanbul": "~0.3.0",
  72. "mock-stdin": "~0.3.1",
  73. "should": "~13.2.3"
  74. },
  75. "engines": {
  76. "node": ">=4.0.0"
  77. },
  78. "license": "MIT"
  79. }