package.json 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "resolve-files",
  3. "version": "1.0.2",
  4. "description": "Get all files from the given entry that resolved by `require`",
  5. "dependencies": {
  6. "crequire": "^1.8.0",
  7. "debug": "^2.6.3"
  8. },
  9. "devDependencies": {
  10. "autod": "^2.8.0",
  11. "egg-bin": "^1.10.3",
  12. "egg-ci": "^1.6.0",
  13. "eslint": "^3.18.0",
  14. "eslint-config-egg": "^3.2.0"
  15. },
  16. "engines": {
  17. "node": ">=4.0.0"
  18. },
  19. "scripts": {
  20. "autod": "autod",
  21. "lint": "eslint .",
  22. "test": "npm run lint -- --fix && npm run test-local",
  23. "test-local": "egg-bin test",
  24. "cov": "egg-bin cov",
  25. "ci": "npm run lint && npm run cov"
  26. },
  27. "ci": {
  28. "version": "4, 6, 7",
  29. "license": {
  30. "year": "2017",
  31. "fullname": "popomore"
  32. }
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git@github.com:popomore/resolve-files.git"
  37. },
  38. "author": "popomore <sakura9515@gmail.com>",
  39. "license": "MIT",
  40. "files": [
  41. "index.js"
  42. ]
  43. }