智慧水务管理系统 - 精河县供水工程综合管理平台

package.json 818B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "quickselect",
  3. "version": "3.0.0",
  4. "type": "module",
  5. "description": "A tiny and fast selection algorithm in JavaScript.",
  6. "repository": "github:mourner/quickselect",
  7. "module": "index.js",
  8. "main": "index.js",
  9. "exports": "./index.js",
  10. "devDependencies": {
  11. "eslint": "^9.6.0",
  12. "eslint-config-mourner": "^4.0.1",
  13. "esm": "^3.2.25",
  14. "rollup": "^4.18.0",
  15. "tape": "^5.8.1",
  16. "typescript": "^5.5.3"
  17. },
  18. "scripts": {
  19. "pretest": "eslint *.js && tsc",
  20. "test": "node test.js",
  21. "bench": "node bench.js"
  22. },
  23. "files": [
  24. "index.js",
  25. "index.d.ts"
  26. ],
  27. "types": "index.d.ts",
  28. "keywords": [
  29. "selection",
  30. "algorithm",
  31. "quickselect",
  32. "sort",
  33. "partial",
  34. "floyd",
  35. "rivest"
  36. ],
  37. "author": "Vladimir Agafonkin",
  38. "license": "ISC"
  39. }