package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "typogr",
  3. "version": "0.6.8",
  4. "description": "Typography utils",
  5. "keywords": [
  6. "typography",
  7. "typogrify",
  8. "typogr",
  9. "hyphenation",
  10. "quotes",
  11. "dashes",
  12. "ampersands",
  13. "prettify"
  14. ],
  15. "homepage": "https://github.com/ekalinin/typogr.js",
  16. "repository": "git://github.com/ekalinin/typogr.js.git",
  17. "author": "Eugene Kalinin <e.v.kalinin@gmail.com>",
  18. "contributors": [
  19. {
  20. "name": "Matthew Newton",
  21. "email": "contact@mnewton.com"
  22. },
  23. {
  24. "name": "Brandon Aaron",
  25. "email": "brandon.aaron@gmail.com"
  26. }
  27. ],
  28. "scripts": {
  29. "test": "./node_modules/.bin/mocha test/typogr.test.js && ./node_modules/.bin/mocha test/test.cli.js"
  30. },
  31. "bin": {
  32. "typogr": "./bin/typogr"
  33. },
  34. "dependencies": {
  35. "async": "0.2",
  36. "commander": "1.0",
  37. "glob": "^7.1.2",
  38. "mkdirp": "0.3"
  39. },
  40. "devDependencies": {
  41. "uglify-js": ">=2",
  42. "mocha": ">=3.4.2",
  43. "should": ">=1.2",
  44. "suppose": ">=0.1",
  45. "rimraf": ">=2"
  46. },
  47. "main": "typogr",
  48. "bugs": {
  49. "web": "https://github.com/ekalinin/typogr.js/issues"
  50. },
  51. "licenses": [
  52. {
  53. "type": "MIT"
  54. }
  55. ]
  56. }