package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "ylru",
  3. "description": "Extends LRU base on hashlru",
  4. "version": "1.3.2",
  5. "homepage": "https://github.com/node-modules/ylru",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/node-modules/ylru.git"
  9. },
  10. "dependencies": {},
  11. "devDependencies": {
  12. "@types/node": "^12.0.8",
  13. "beautify-benchmark": "^0.2.4",
  14. "benchmark": "^2.1.3",
  15. "egg-bin": "^1.10.0",
  16. "egg-ci": "^1.19.0",
  17. "eslint": "^4.19.1",
  18. "eslint-config-egg": "^6.0.0",
  19. "git-contributor": "^1.0.10",
  20. "hashlru": "^1.0.3",
  21. "ko-sleep": "^1.0.2",
  22. "lru-cache": "^4.0.2",
  23. "runscript": "^1.5.2",
  24. "typescript": "^4.6.2"
  25. },
  26. "main": "index.js",
  27. "files": [
  28. "index.js",
  29. "index.d.ts"
  30. ],
  31. "scripts": {
  32. "contributor": "git-contributor",
  33. "lint": "eslint test *.js",
  34. "test": "npm run lint -- --fix && npm run test-local",
  35. "test-local": "egg-bin test",
  36. "cov": "egg-bin cov",
  37. "ci": "npm run lint && npm run cov",
  38. "autod": "autod"
  39. },
  40. "author": "fengmk2",
  41. "engines": {
  42. "node": ">= 4.0.0"
  43. },
  44. "ci": {
  45. "version": "4, 6, 8, 10, 12, 14, 16",
  46. "type": "github",
  47. "os": {
  48. "github": "linux"
  49. }
  50. },
  51. "license": "MIT"
  52. }