package.json 679 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "di",
  3. "version": "0.0.1",
  4. "description": "Dependency Injection for Node.js. Heavily inspired by AngularJS.",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "test": "mocha --compilers coffee:coffee-script test/*"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/vojtajina/node-di.git"
  12. },
  13. "keywords": [
  14. "di",
  15. "dependency",
  16. "injection",
  17. "injector"
  18. ],
  19. "devDependencies": {
  20. "grunt": "~0.4.0rc5",
  21. "grunt-simple-mocha": "~0.3.2",
  22. "grunt-contrib-jshint": "~0.1.1rc5",
  23. "mocha": "1.8.1",
  24. "chai": "1.4.2",
  25. "coffee-script": "1.4.0"
  26. },
  27. "author": "Vojta Jina <vojta.jina@gmail.com>",
  28. "license": "MIT"
  29. }