package.json 604 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "yaeti",
  3. "version": "0.0.6",
  4. "description": "Yet Another EventTarget Implementation",
  5. "author": "Iñaki Baz Castillo <ibc@aliax.net>",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "browser": {
  9. "./lib/Event.js": "./lib/Event.browser.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/ibc/yaeti.git"
  14. },
  15. "devDependencies": {
  16. "gulp": "git+https://github.com/gulpjs/gulp.git#4.0",
  17. "gulp-jscs": "^1.6.0",
  18. "gulp-jscs-stylish": "^1.1.0",
  19. "gulp-jshint": "^1.11.2",
  20. "jshint-stylish": "~1.0.2"
  21. },
  22. "engines": {
  23. "node": ">=0.10.32"
  24. }
  25. }