ad7d3d084638d70de63d167f1be75bf4cf5ac64827fbf4c8aaf6cff13456ad5b55a684d3b23a3634fde46870568327620f2bb8d52024bf1ec72f6d3760bbc9 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "svg-tags",
  3. "version": "1.0.0",
  4. "description": "List of standard SVG tags.",
  5. "author": {
  6. "name": "Athan Reines",
  7. "email": "kgryte@gmail.com"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Athan Reines",
  12. "email": "kgryte@gmail.com"
  13. }
  14. ],
  15. "scripts": {
  16. "test": "./node_modules/.bin/mocha",
  17. "test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
  18. "coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
  19. },
  20. "main": "./lib",
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/element-io/svg-tags.git"
  24. },
  25. "keywords": [
  26. "svg",
  27. "tags",
  28. "w3c"
  29. ],
  30. "bugs": {
  31. "url": "https://github.com/element-io/svg-tags/issues"
  32. },
  33. "dependencies": {},
  34. "devDependencies": {
  35. "chai": "1.x.x",
  36. "coveralls": "^2.11.1",
  37. "istanbul": "^0.3.0",
  38. "mocha": "1.x.x"
  39. },
  40. "licenses": [
  41. {
  42. "type": "MIT",
  43. "url": "http://www.opensource.org/licenses/MIT"
  44. }
  45. ]
  46. }