package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "svgo",
  3. "version": "0.7.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. "email": "kir@soulshine.in"
  15. },
  16. "author": {
  17. "name": "Kir Belevich",
  18. "email": "kir@soulshine.in",
  19. "url": "https://github.com/deepsweet"
  20. },
  21. "contributors": [
  22. {
  23. "name": "Sergey Belov",
  24. "email": "peimei@ya.ru",
  25. "url": "http://github.com/arikon"
  26. },
  27. {
  28. "name": "Lev Solntsev",
  29. "email": "lev.sun@ya.ru",
  30. "url": "http://github.com/GreLI"
  31. }
  32. ],
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/svg/svgo.git"
  36. },
  37. "main": "./lib/svgo.js",
  38. "bin": {
  39. "svgo": "./bin/svgo"
  40. },
  41. "directories": {
  42. "bin": "./bin",
  43. "lib": "./lib",
  44. "example": "./examples"
  45. },
  46. "scripts": {
  47. "test": "set NODE_ENV=test && mocha",
  48. "jshint": "jshint --show-non-errors ."
  49. },
  50. "dependencies": {
  51. "sax": "~1.2.1",
  52. "coa": "~1.0.1",
  53. "js-yaml": "~3.7.0",
  54. "colors": "~1.1.2",
  55. "whet.extend": "~0.9.9",
  56. "mkdirp": "~0.5.1",
  57. "csso": "~2.3.1"
  58. },
  59. "devDependencies": {
  60. "mocha": "~3.2.0",
  61. "should": "11.2.0",
  62. "istanbul": "~0.4.5",
  63. "mocha-istanbul": "~0.3.0",
  64. "coveralls": "~2.11.14"
  65. },
  66. "engines": {
  67. "node": ">=0.10.0"
  68. },
  69. "license": "MIT"
  70. }