package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "is-arrayish",
  3. "description": "Determines if an object can be used as an array",
  4. "version": "0.3.2",
  5. "author": "Qix (http://github.com/qix-)",
  6. "keywords": [
  7. "is",
  8. "array",
  9. "duck",
  10. "type",
  11. "arrayish",
  12. "similar",
  13. "proto",
  14. "prototype",
  15. "type"
  16. ],
  17. "license": "MIT",
  18. "scripts": {
  19. "test": "mocha --require coffeescript/register ./test/**/*.coffee",
  20. "lint": "zeit-eslint --ext .jsx,.js .",
  21. "lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/qix-/node-is-arrayish.git"
  26. },
  27. "devDependencies": {
  28. "@zeit/eslint-config-node": "^0.3.0",
  29. "@zeit/git-hooks": "^0.1.4",
  30. "coffeescript": "^2.3.1",
  31. "coveralls": "^3.0.1",
  32. "eslint": "^4.19.1",
  33. "istanbul": "^0.4.5",
  34. "mocha": "^5.2.0",
  35. "should": "^13.2.1"
  36. },
  37. "eslintConfig": {
  38. "extends": [
  39. "@zeit/eslint-config-node"
  40. ]
  41. },
  42. "git": {
  43. "pre-commit": "lint-staged"
  44. }
  45. }