package.json 872 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "xmlbuilder",
  3. "version": "10.1.1",
  4. "keywords": [
  5. "xml",
  6. "xmlbuilder"
  7. ],
  8. "homepage": "http://github.com/oozcitak/xmlbuilder-js",
  9. "description": "An XML builder for node.js",
  10. "author": "Ozgur Ozcitak <oozcitak@gmail.com>",
  11. "contributors": [],
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/oozcitak/xmlbuilder-js.git"
  16. },
  17. "bugs": {
  18. "url": "http://github.com/oozcitak/xmlbuilder-js/issues"
  19. },
  20. "main": "./lib/index",
  21. "engines": {
  22. "node": ">=4.0"
  23. },
  24. "dependencies": {},
  25. "devDependencies": {
  26. "coffeescript": "1.*",
  27. "mocha": "*",
  28. "coffee-coverage": "2.*",
  29. "istanbul": "*",
  30. "coveralls": "*"
  31. },
  32. "scripts": {
  33. "prepublishOnly": "coffee -co lib src",
  34. "postpublish": "rm -rf lib",
  35. "test": "mocha \"test/**/*.coffee\" && istanbul report text lcov"
  36. }
  37. }