package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "coalescy",
  3. "version": "1.0.0",
  4. "description": "Simple function that return the first non null or undefined argument ",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha-runner './specs/**/*.js'",
  8. "lint": "eslint --format 'node_modules/eslint-friendly-formatter' lib/ bin/ specs/ -c './configs/eslint.json'",
  9. "coverage": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary",
  10. "coverage-cache": "istanbul cover -x 'specs/**/*.js' mocha-runner 'specs/**/*.js' html text-summary -- --useCache=true",
  11. "watch": "npm run coverage && watch-spawn -p 'specs/**/*.js' -p 'bin/**/*.js' -p 'lib/**/*.js' npm run coverage-cache"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/royriojas/coalescy.git"
  16. },
  17. "keywords": [
  18. "coalesce",
  19. "first",
  20. "not",
  21. "null",
  22. "first",
  23. "not",
  24. "undefined",
  25. "utility"
  26. ],
  27. "author": "Roy Riojas",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/royriojas/coalescy/issues"
  31. },
  32. "homepage": "https://github.com/royriojas/coalescy",
  33. "devDependencies": {
  34. "eslint": "^0.16.1",
  35. "eslint-friendly-formatter": "^1.0.3",
  36. "istanbul": "^0.3.7",
  37. "mocha-runner": "^1.0.0",
  38. "watch-spawn": "^1.0.2"
  39. }
  40. }