package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "direction",
  3. "version": "0.1.5",
  4. "description": "Detect directionality: left-to-right, right-to-left, or neutral",
  5. "license": "MIT",
  6. "keywords": [
  7. "writing",
  8. "system",
  9. "direction",
  10. "directionality",
  11. "rtl",
  12. "ltr",
  13. "cli",
  14. "bin"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/wooorm/direction.git"
  19. },
  20. "author": "Titus Wormer <tituswormer@gmail.com>",
  21. "bin": {
  22. "direction": "cli.js"
  23. },
  24. "devDependencies": {
  25. "eslint": "^0.10.0",
  26. "istanbul": "^0.3.0",
  27. "jscs": "^1.0.0",
  28. "jscs-jsdoc": "^0.3.2",
  29. "mocha": "^2.0.0"
  30. },
  31. "scripts": {
  32. "test-lib": "_mocha --check-leaks test.js",
  33. "test-cli": "bash ./test.sh",
  34. "test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test.js",
  35. "test-travis": "npm run test-cli && npm run test-coveralls",
  36. "test": "npm run test-lib && npm run test-cli",
  37. "coverage": "istanbul cover _mocha -- -- test.js",
  38. "lint-api": "eslint index.js",
  39. "lint-cli": "eslint cli.js",
  40. "lint-test": "eslint --env mocha test.js",
  41. "lint-style": "jscs --reporter inline index.js cli.js test.js",
  42. "lint": "npm run lint-api && npm run lint-cli && npm run lint-test && npm run lint-style",
  43. "make": "npm run lint && npm run coverage"
  44. }
  45. }