package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "app-root-path",
  3. "version": "2.2.1",
  4. "description": "Determine an app's root path from anywhere inside the app",
  5. "main": "index.js",
  6. "browser": "browser-shim.js",
  7. "scripts": {
  8. "test": "nyc mocha -R spec",
  9. "report-coverage": "npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
  10. "release": "semantic-release pre && npm publish && semantic-release post"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/inxilpro/node-app-root-path.git"
  15. },
  16. "keywords": [
  17. "root",
  18. "path",
  19. "utility",
  20. "util",
  21. "node",
  22. "module",
  23. "modules",
  24. "node_modules",
  25. "require",
  26. "app"
  27. ],
  28. "author": "Chris Morrell <http://cmorrell.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/inxilpro/node-app-root-path/issues"
  32. },
  33. "homepage": "https://github.com/inxilpro/node-app-root-path",
  34. "devDependencies": {
  35. "codecov": "^1.0.1",
  36. "coveralls": "^2.11.2",
  37. "cracks": "^3.1.2",
  38. "cz-conventional-changelog": "^1.2.0",
  39. "ghooks": "^1.3.2",
  40. "istanbul": "^0.3.4",
  41. "mocha": "^2.0.1",
  42. "mocha-lcov-reporter": "0.0.1",
  43. "mockery": "^1.7.0",
  44. "nyc": "^8.1.0",
  45. "semantic-release": "^4.3.5",
  46. "validate-commit-msg": "^2.8.0"
  47. },
  48. "engines": {
  49. "node": ">= 6.0.0"
  50. },
  51. "release": {
  52. "branch": "master"
  53. },
  54. "config": {
  55. "ghooks": {
  56. "commit-msg": "validate-commit-msg",
  57. "post-merge": "npm install",
  58. "post-rewrite": "npm install"
  59. },
  60. "commitizen": {
  61. "path": "./node_modules/cz-conventional-changelog"
  62. }
  63. }
  64. }