package.json 812 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "octicons",
  3. "version": "8.1.0",
  4. "description": "A scalable set of icons handcrafted with <3 by GitHub.",
  5. "homepage": "https://octicons.github.com",
  6. "author": "GitHub Inc.",
  7. "license": "MIT",
  8. "style": "index.scss",
  9. "main": "index.js",
  10. "files": [
  11. "index.js",
  12. "index.scss",
  13. "build"
  14. ],
  15. "repository": "https://github.com/primer/octicons.git",
  16. "bugs": {
  17. "url": "https://github.com/primer/octicons/issues"
  18. },
  19. "scripts": {
  20. "publish": "../../script/notify success",
  21. "prepublishOnly": "../../script/notify pending",
  22. "prepare": "cp -R ../build . && cp index.scss build/build.css",
  23. "test": "ava --verbose 'tests/*.js'"
  24. },
  25. "keywords": [
  26. "GitHub",
  27. "icons",
  28. "svg",
  29. "octicons"
  30. ],
  31. "dependencies": {
  32. "object-assign": "^4.1.1"
  33. }
  34. }