package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "realpath-native",
  3. "version": "1.0.2",
  4. "main": "index.js",
  5. "files": [
  6. "index.js"
  7. ],
  8. "description": "Use the system's native `realpath`",
  9. "repository": "SimenB/realpath-native",
  10. "author": "Simen Bekkhus <sbekkhus91@gmail.com>",
  11. "license": "MIT",
  12. "keywords": [
  13. "realpath"
  14. ],
  15. "engines": {
  16. "node": ">=4"
  17. },
  18. "scripts": {
  19. "lint": "eslint .",
  20. "test": "eslint ."
  21. },
  22. "dependencies": {
  23. "util.promisify": "^1.0.0"
  24. },
  25. "devDependencies": {
  26. "@commitlint/cli": "^6.0.2",
  27. "@commitlint/config-conventional": "^6.0.2",
  28. "eslint": "^4.13.1",
  29. "eslint-config-simenb-base": "^14.0.0",
  30. "eslint-config-simenb-node": "^0.4.11",
  31. "husky": "^0.14.3",
  32. "lint-staged": "^6.0.0",
  33. "prettier": "^1.9.2"
  34. },
  35. "commitlint": {
  36. "extends": [
  37. "@commitlint/config-conventional"
  38. ]
  39. },
  40. "prettier": {
  41. "proseWrap": "always",
  42. "singleQuote": true,
  43. "trailingComma": "es5"
  44. },
  45. "lint-staged": {
  46. "*.js": [
  47. "eslint --fix",
  48. "git add"
  49. ],
  50. "*.{md,json}": [
  51. "prettier --write",
  52. "git add"
  53. ]
  54. }
  55. }