package.json 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "npm-conf",
  3. "version": "1.1.3",
  4. "description": "Get the npm config",
  5. "license": "MIT",
  6. "repository": "kevva/npm-conf",
  7. "author": {
  8. "name": "Kevin Martensson",
  9. "email": "kevinmartensson@gmail.com",
  10. "url": "github.com/kevva"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "prepublish": "node lib/make.js",
  17. "test": "xo && ava"
  18. },
  19. "files": [
  20. "index.js",
  21. "lib"
  22. ],
  23. "keywords": [
  24. "conf",
  25. "config",
  26. "global",
  27. "npm",
  28. "path",
  29. "prefix",
  30. "rc"
  31. ],
  32. "dependencies": {
  33. "config-chain": "^1.1.11",
  34. "pify": "^3.0.0"
  35. },
  36. "devDependencies": {
  37. "ava": "*",
  38. "babel-generator": "^6.24.1",
  39. "babel-traverse": "^6.24.1",
  40. "babylon": "^6.17.1",
  41. "npm": "^5.0.4",
  42. "xo": "*"
  43. },
  44. "xo": {
  45. "ignores": [
  46. "lib/defaults.js",
  47. "lib/types.js"
  48. ]
  49. }
  50. }