package.json 924 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "enabled",
  3. "version": "1.0.2",
  4. "description": "Check if a certain debug flag is enabled.",
  5. "main": "index.js",
  6. "scripts": {
  7. "100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
  8. "test": "mocha test.js",
  9. "watch": "mocha --watch test.js",
  10. "coverage": "istanbul cover ./node_modules/.bin/_mocha -- test.js",
  11. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/bigpipe/enabled.git"
  16. },
  17. "keywords": [
  18. "enabled",
  19. "debug",
  20. "diagnostics",
  21. "flag",
  22. "env",
  23. "variable",
  24. "localstorage"
  25. ],
  26. "author": "Arnout Kazemier",
  27. "license": "MIT",
  28. "dependencies": {
  29. "env-variable": "0.0.x"
  30. },
  31. "devDependencies": {
  32. "assume": "1.3.x",
  33. "istanbul": "0.4.x",
  34. "mocha": "2.3.x",
  35. "pre-commit": "1.1.x"
  36. }
  37. }