package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "cosmiconfig",
  3. "version": "2.2.2",
  4. "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib"
  9. ],
  10. "scripts": {
  11. "lint": "node-version-gte-4 && eslint . || echo \"ESLint not supported\"",
  12. "tape": "tape test/*.test.js | tap-spec",
  13. "coverage": "nyc npm run tape && nyc report --reporter=html && open coverage/index.html",
  14. "test": "npm run tape && npm run lint"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
  19. },
  20. "keywords": [
  21. "load",
  22. "configuration",
  23. "config"
  24. ],
  25. "author": "David Clark <david.dave.clark@gmail.com>",
  26. "contributors": [
  27. "Bogdan Chadkin <trysound@yandex.ru>"
  28. ],
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/davidtheclark/cosmiconfig/issues"
  32. },
  33. "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
  34. "dependencies": {
  35. "is-directory": "^0.3.1",
  36. "js-yaml": "^3.4.3",
  37. "minimist": "^1.2.0",
  38. "object-assign": "^4.1.0",
  39. "os-homedir": "^1.0.1",
  40. "parse-json": "^2.2.0",
  41. "require-from-string": "^1.1.0"
  42. },
  43. "devDependencies": {
  44. "eslint": "^3.13.0",
  45. "eslint-config-davidtheclark-node": "^0.2.0",
  46. "eslint-plugin-node": "^3.0.5",
  47. "expect": "^1.20.2",
  48. "lodash": "^4.17.4",
  49. "node-version-check": "^2.1.1",
  50. "nyc": "^10.0.0",
  51. "sinon": "^1.17.7",
  52. "tap-spec": "^4.1.1",
  53. "tape": "^4.6.3"
  54. },
  55. "engines": {
  56. "node": ">=0.12"
  57. }
  58. }