package.json 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "array-ify",
  3. "version": "1.0.0",
  4. "description": "Turn anything into an array",
  5. "homepage": "https://github.com/stevemao/array-ify",
  6. "author": {
  7. "name": "Steve Mao",
  8. "email": "maochenyan@gmail.com",
  9. "url": "https://github.com/stevemao"
  10. },
  11. "repository": "stevemao/array-ify",
  12. "license": "MIT",
  13. "files": [
  14. "index.js"
  15. ],
  16. "keywords": [
  17. "array-ify",
  18. "array",
  19. "arr",
  20. "arrify",
  21. "arrayify",
  22. "convert",
  23. "value"
  24. ],
  25. "devDependencies": {
  26. "coveralls": "^2.11.2",
  27. "istanbul": "^0.3.8",
  28. "jscs": "^1.11.3",
  29. "jshint": "^2.6.3",
  30. "mocha": "*"
  31. },
  32. "scripts": {
  33. "coverage": "istanbul cover _mocha -- -R spec && rm -rf ./coverage",
  34. "lint": "jshint *.js --exclude node_modules && jscs *.js",
  35. "test": "npm run-script lint && mocha"
  36. }
  37. }