租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.0 KiB

6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
  1. {
  2. "name": "reusify",
  3. "version": "1.1.0",
  4. "description": "Reuse objects and functions with style",
  5. "main": "reusify.js",
  6. "types": "reusify.d.ts",
  7. "scripts": {
  8. "lint": "eslint",
  9. "test": "tape test.js",
  10. "test:coverage": "c8 --100 tape test.js",
  11. "test:typescript": "tsc"
  12. },
  13. "pre-commit": [
  14. "lint",
  15. "test",
  16. "test:typescript"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/mcollina/reusify.git"
  21. },
  22. "keywords": [
  23. "reuse",
  24. "object",
  25. "performance",
  26. "function",
  27. "fast"
  28. ],
  29. "author": "Matteo Collina <hello@matteocollina.com>",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/mcollina/reusify/issues"
  33. },
  34. "homepage": "https://github.com/mcollina/reusify#readme",
  35. "engines": {
  36. "node": ">=0.10.0",
  37. "iojs": ">=1.0.0"
  38. },
  39. "devDependencies": {
  40. "@types/node": "^22.9.0",
  41. "eslint": "^9.13.0",
  42. "neostandard": "^0.12.0",
  43. "pre-commit": "^1.2.2",
  44. "tape": "^5.0.0",
  45. "c8": "^10.1.2",
  46. "typescript": "^5.2.2"
  47. },
  48. "dependencies": {
  49. }
  50. }