package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "node-homedir",
  3. "version": "1.1.1",
  4. "description": "Get the effective user's homedir.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run lint && mocha -r intelli-espower-loader test/*.test.js",
  8. "test-cov": "nyc mocha -r intelli-espower-loader test/*.test.js",
  9. "lint": "eslint test *.js",
  10. "ci": "npm run lint && npm run test-cov"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/node-modules/node-homedir.git"
  15. },
  16. "keywords": [
  17. "homedir",
  18. "effective",
  19. "node"
  20. ],
  21. "author": "ngot",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/node-modules/node-homedir/issues"
  25. },
  26. "homepage": "https://github.com/node-modules/node-homedir#readme",
  27. "devDependencies": {
  28. "eslint": "3",
  29. "eslint-config-egg": "3",
  30. "intelli-espower-loader": "^1.0.1",
  31. "mm": "^2.0.0",
  32. "mocha": "*",
  33. "nyc": "^11.2.1",
  34. "power-assert": "^1.4.1"
  35. },
  36. "files": [
  37. "index.js"
  38. ],
  39. "engines": {
  40. "node": ">=4.0.0"
  41. },
  42. "ci": {
  43. "version": "4, 6, 8, 10"
  44. }
  45. }