package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "dom-converter",
  3. "version": "0.2.0",
  4. "description": "converts bare objects to DOM objects or xml representations",
  5. "main": "lib/domConverter.js",
  6. "dependencies": {
  7. "utila": "~0.4"
  8. },
  9. "devDependencies": {
  10. "chai": "^1.10.0",
  11. "chai-changes": "^1.3.4",
  12. "chai-fuzzy": "^1.4.0",
  13. "coffee-script": "^1.8.0",
  14. "jitter": "^1.3.0",
  15. "mocha": "^2.0.1",
  16. "mocha-pretty-spec-reporter": "0.1.0-beta.1",
  17. "sinon": "^1.12.2",
  18. "sinon-chai": "^2.6.0"
  19. },
  20. "scripts": {
  21. "test": "mocha \"test/**/*.coffee\"",
  22. "test:watch": "mocha \"test/**/*.coffee\" --watch",
  23. "compile": "coffee --bare --compile --output ./lib ./src",
  24. "compile:watch": "jitter src lib -b",
  25. "watch": "npm run compile:watch & npm run test:watch",
  26. "winwatch": "start/b npm run compile:watch & npm run test:watch",
  27. "prepublish": "npm run compile"
  28. },
  29. "author": "Aria Minaei",
  30. "license": "MIT",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/AriaMinaei/dom-converter"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/AriaMinaei/dom-converter/issues"
  37. }
  38. }