package.json 608 B

123456789101112131415161718192021222324
  1. {
  2. "name": "i18n-t",
  3. "version": "1.0.1",
  4. "description": "Very easy to use and dumb i18n utility",
  5. "main": "index.js",
  6. "dependencies": {
  7. "lodash": "^4.13.1"
  8. },
  9. "devDependencies": {
  10. "mocha": "^2.3.3"
  11. },
  12. "scripts": {
  13. "test": "export TESTING=true; mocha --reporter list --bail"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/SamyPesse/i18n-t.git"
  18. },
  19. "author": "Samy Pesse <samypesse@gmail.com>",
  20. "license": "Apache-2.0",
  21. "bugs": {
  22. "url": "https://github.com/SamyPesse/i18n-t/issues"
  23. }
  24. }