package.json 1.2 KB

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