package.json 666 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "is-path-in-cwd",
  3. "version": "1.0.1",
  4. "description": "Check if a path is in the current working directory",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-path-in-cwd",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "path",
  23. "cwd",
  24. "pwd",
  25. "check",
  26. "filepath",
  27. "file",
  28. "folder",
  29. "in",
  30. "inside"
  31. ],
  32. "dependencies": {
  33. "is-path-inside": "^1.0.0"
  34. },
  35. "devDependencies": {
  36. "mocha": "*"
  37. }
  38. }