package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "get-paths",
  3. "description": "Helper function to get an absolute path for a template engine view",
  4. "version": "0.0.7",
  5. "author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
  6. "ava": {
  7. "failFast": true,
  8. "verbose": true
  9. },
  10. "bugs": {
  11. "url": "https://github.com/niftylettuce/get-paths/issues",
  12. "email": "niftylettuce@gmail.com"
  13. },
  14. "commitlint": {
  15. "extends": [
  16. "@commitlint/config-conventional"
  17. ]
  18. },
  19. "contributors": [
  20. "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
  21. ],
  22. "dependencies": {
  23. "pify": "^4.0.1"
  24. },
  25. "devDependencies": {
  26. "@commitlint/cli": "8.1.0",
  27. "@commitlint/config-conventional": "^8.1.0",
  28. "auto-bind": "^2.1.0",
  29. "ava": "2.3.0",
  30. "codecov": "^3.5.0",
  31. "cross-env": "^5.2.1",
  32. "eslint": "6.3.0",
  33. "eslint-config-xo-lass": "^1.0.3",
  34. "eslint-plugin-node": "10.0.0",
  35. "fixpack": "^2.3.1",
  36. "husky": "3.0.5",
  37. "lint-staged": "9.2.5",
  38. "nyc": "^14.1.1",
  39. "remark-cli": "7.0.0",
  40. "remark-preset-github": "^0.0.16",
  41. "xo": "^0.24.0"
  42. },
  43. "engines": {
  44. "node": ">=6.4"
  45. },
  46. "homepage": "https://github.com/niftylettuce/get-paths",
  47. "husky": {
  48. "hooks": {
  49. "pre-commit": "lint-staged && npm test",
  50. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  51. }
  52. },
  53. "keywords": [
  54. "get-paths",
  55. "lass"
  56. ],
  57. "license": "MIT",
  58. "lint-staged": {
  59. "*.js": [
  60. "xo --fix",
  61. "git add"
  62. ],
  63. "*.md": [
  64. "remark . -qfo",
  65. "git add"
  66. ],
  67. "package.json": [
  68. "fixpack",
  69. "git add"
  70. ]
  71. },
  72. "main": "index.js",
  73. "prettier": {
  74. "singleQuote": true,
  75. "bracketSpacing": true,
  76. "trailingComma": "none"
  77. },
  78. "remarkConfig": {
  79. "plugins": [
  80. "preset-github"
  81. ]
  82. },
  83. "repository": {
  84. "type": "git",
  85. "url": "https://github.com/niftylettuce/get-paths"
  86. },
  87. "scripts": {
  88. "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
  89. "lint": "xo && remark . -qfo && eslint -c .lib.eslintrc index.js",
  90. "test": "npm run lint && npm run test-coverage",
  91. "test-coverage": "cross-env NODE_ENV=test nyc ava"
  92. },
  93. "xo": {
  94. "prettier": true,
  95. "space": true,
  96. "extends": [
  97. "xo-lass"
  98. ]
  99. }
  100. }