package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@dabh/diagnostics",
  3. "version": "2.0.3",
  4. "description": "Tools for debugging your node.js modules and event loop",
  5. "main": "./node",
  6. "browser": "./browser",
  7. "scripts": {
  8. "test:basic": "mocha --require test/mock.js test/*.test.js",
  9. "test:node": "mocha --require test/mock test/node.js",
  10. "test:browser": "mocha --require test/mock test/browser.js",
  11. "test:runner": "npm run test:basic && npm run test:node && npm run test:browser",
  12. "webpack:node:prod": "webpack --mode=production node/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
  13. "webpack:node:dev": "webpack --mode=development node/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
  14. "webpack:browser:prod": "webpack --mode=production browser/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
  15. "webpack:browser:dev": "webpack --mode=development browser/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
  16. "test": "nyc --reporter=text --reporter=lcov npm run test:runner"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/3rd-Eden/diagnostics.git"
  21. },
  22. "keywords": [
  23. "debug",
  24. "debugger",
  25. "debugging",
  26. "diagnostic",
  27. "diagnostics",
  28. "event",
  29. "loop",
  30. "metrics",
  31. "stats"
  32. ],
  33. "author": "Arnout Kazemier",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/3rd-Eden/diagnostics/issues"
  37. },
  38. "homepage": "https://github.com/3rd-Eden/diagnostics",
  39. "devDependencies": {
  40. "assume": "2.3.x",
  41. "asyncstorageapi": "^1.0.2",
  42. "mocha": "9.2.x",
  43. "nyc": "^15.1.0",
  44. "objstorage": "^1.0.0",
  45. "pre-commit": "1.2.x",
  46. "require-poisoning": "^2.0.0",
  47. "webpack": "4.x",
  48. "webpack-bundle-size-analyzer": "^3.0.0",
  49. "webpack-cli": "3.x"
  50. },
  51. "dependencies": {
  52. "colorspace": "1.1.x",
  53. "enabled": "2.0.x",
  54. "kuler": "^2.0.0"
  55. },
  56. "contributors": [
  57. "Martijn Swaagman (https://github.com/swaagie)",
  58. "Jarrett Cruger (https://github.com/jcrugzz)",
  59. "Sevastos (https://github.com/sevastos)"
  60. ],
  61. "directories": {
  62. "test": "test"
  63. }
  64. }