Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "xmlbuilder",
  3. "version": "15.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. "typings": "./typings/index.d.ts",
  22. "engines": {
  23. "node": ">=8.0"
  24. },
  25. "dependencies": {},
  26. "devDependencies": {
  27. "coffee-coverage": "*",
  28. "coffeescript": "2.4.1",
  29. "coveralls": "*",
  30. "istanbul": "*",
  31. "mocha": "*",
  32. "nyc": "*",
  33. "xpath": "*",
  34. "git-state": "*"
  35. },
  36. "mocha": {
  37. "require": [
  38. "coffeescript/register",
  39. "coffee-coverage/register-istanbul",
  40. "test/common.coffee"
  41. ],
  42. "recursive": true,
  43. "ui": "tdd",
  44. "reporter": "dot"
  45. },
  46. "scripts": {
  47. "prepublishOnly": "coffee -co lib src",
  48. "test": "nyc mocha \"test/**/*.coffee\"",
  49. "perf": "coffee ./perf/index.coffee"
  50. }
  51. }