package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "value-or-function",
  3. "version": "3.0.0",
  4. "description": "Normalize a value or function, applying extra args to the function",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Hugo Wood <hx4.5@free.fr>"
  9. ],
  10. "repository": "gulpjs/value-or-function",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 0.10"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "index.js"
  18. ],
  19. "scripts": {
  20. "lint": "eslint . && jscs index.js test/",
  21. "pretest": "npm run lint",
  22. "test": "mocha --async-only",
  23. "cover": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly",
  24. "coveralls": "npm run cover && istanbul-coveralls"
  25. },
  26. "dependencies": {},
  27. "devDependencies": {
  28. "eslint": "^1.10.3",
  29. "eslint-config-gulp": "^2.0.0",
  30. "expect": "^1.16.0",
  31. "istanbul": "^0.4.3",
  32. "istanbul-coveralls": "^1.0.3",
  33. "jscs": "^2.3.5",
  34. "jscs-preset-gulp": "^1.0.0",
  35. "mocha": "^2.4.5"
  36. },
  37. "keywords": [
  38. "options",
  39. "normalize",
  40. "value",
  41. "function"
  42. ]
  43. }