package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "resolve-path",
  3. "description": "Resolve a relative path against a root path with validation",
  4. "version": "1.4.0",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  8. ],
  9. "license": "MIT",
  10. "repository": "pillarjs/resolve-path",
  11. "dependencies": {
  12. "http-errors": "~1.6.2",
  13. "path-is-absolute": "1.0.1"
  14. },
  15. "devDependencies": {
  16. "eslint": "3.19.0",
  17. "eslint-config-standard": "10.2.1",
  18. "eslint-plugin-import": "2.8.0",
  19. "eslint-plugin-markdown": "1.0.0-beta.6",
  20. "eslint-plugin-node": "5.2.1",
  21. "eslint-plugin-promise": "3.6.0",
  22. "eslint-plugin-standard": "3.0.1",
  23. "istanbul": "0.4.5",
  24. "mocha": "2.5.3"
  25. },
  26. "files": [
  27. "HISTORY.md",
  28. "LICENSE",
  29. "README.md",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.8"
  34. },
  35. "scripts": {
  36. "lint": "eslint --plugin markdown --ext js,md .",
  37. "test": "mocha --reporter spec --bail --check-leaks test/",
  38. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  39. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  40. },
  41. "keywords": [
  42. "resolve",
  43. "path",
  44. "safe"
  45. ]
  46. }