package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "tiny-lr",
  3. "version": "1.1.1",
  4. "description": "Tiny LiveReload server, background-friendly",
  5. "main": "./src",
  6. "scripts": {
  7. "prepublish:": "npm run babel",
  8. "preversion": "npm test",
  9. "postversion": "git push origin master --follow-tags && npm publish",
  10. "test": "npm run eslint && npm run mocha",
  11. "eslint": "eslint . --debug",
  12. "babel": "babel lib/ -d src && babel test/ -d src_test/",
  13. "mocha": "npm run babel && mocha --reporter spec src_test/",
  14. "test-debug": "DEBUG=tinylr:* mocha --reporter list",
  15. "test-debug-all": "DEBUG=* mocha --reporter list",
  16. "post-change": "sh scripts/post-change",
  17. "get-change": "curl http://localhost:35729/changed?files=site.css",
  18. "watch": "npm-watch"
  19. },
  20. "watch": {
  21. "babel": "{lib,test}/**/*.js"
  22. },
  23. "dependencies": {
  24. "body": "^5.1.0",
  25. "debug": "^3.1.0",
  26. "faye-websocket": "~0.10.0",
  27. "livereload-js": "^2.3.0",
  28. "object-assign": "^4.1.0",
  29. "qs": "^6.4.0"
  30. },
  31. "devDependencies": {
  32. "babel-cli": "^6.9.0",
  33. "babel-plugin-add-module-exports": "^0.2.1",
  34. "babel-plugin-transform-regenerator": "^6.9.0",
  35. "babel-preset-es2015": "^6.9.0",
  36. "eslint": "^2.11.1",
  37. "eslint-config-standard": "^5.3.1",
  38. "eslint-plugin-promise": "^1.1.0",
  39. "eslint-plugin-standard": "^1.3.2",
  40. "express": "^4.1.1",
  41. "gaze": "^1.1.2",
  42. "mocha": "^2.3.3",
  43. "npm-watch": "^0.1.6",
  44. "standard-version": "^2.2.1",
  45. "supertest": "^1.2.0"
  46. },
  47. "author": "mklabs",
  48. "homepage": "https://github.com/mklabs/tiny-lr",
  49. "bugs": "https://github.com/mklabs/tiny-lr/issues",
  50. "repository": {
  51. "type": "git",
  52. "url": "git://github.com/mklabs/tiny-lr.git"
  53. },
  54. "config": {
  55. "test_port": "9001"
  56. },
  57. "license": "MIT",
  58. "contributors": [
  59. {
  60. "name": "Kyle Robinson Young",
  61. "url": "https://github.com/shama"
  62. },
  63. {
  64. "name": "Jordan Hawker",
  65. "url": "https://github.com/elwayman02"
  66. },
  67. {
  68. "name": "Hemanth.hm",
  69. "url": "https://github.com/hemanth"
  70. },
  71. {
  72. "name": "Mickael Daniel",
  73. "url": "https://github.com/mklabs"
  74. }
  75. ],
  76. "__npminstall_done": true,
  77. "_from": "tiny-lr@1.1.1",
  78. "_resolved": "https://registry.npmmirror.com/tiny-lr/-/tiny-lr-1.1.1.tgz"
  79. }