package.json 927 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "xmlbuilder",
  3. "version": "11.0.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. "typings": "./typings/index.d.ts",
  22. "engines": {
  23. "node": ">=4.0"
  24. },
  25. "dependencies": {},
  26. "devDependencies": {
  27. "coffeescript": "1.*",
  28. "mocha": "*",
  29. "coffee-coverage": "2.*",
  30. "istanbul": "*",
  31. "coveralls": "*",
  32. "xpath": "*"
  33. },
  34. "scripts": {
  35. "prepublishOnly": "coffee -co lib src",
  36. "postpublish": "rm -rf lib",
  37. "test": "mocha \"test/**/*.coffee\" && istanbul report text lcov"
  38. }
  39. }