用工小程序前端代码
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.

57 lines
1.4 KiB

6 months ago
2 months ago
2 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": "fastq",
  3. <<<<<<< HEAD
  4. "version": "1.18.0",
  5. =======
  6. "version": "1.19.0",
  7. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  8. "description": "Fast, in memory work queue",
  9. "main": "queue.js",
  10. "scripts": {
  11. "lint": "standard --verbose | snazzy",
  12. "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test/test.js test/promise.js",
  13. "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js test/promise.js",
  14. "test:report": "npm run lint && npm run unit:report",
  15. "test": "npm run lint && npm run unit",
  16. "typescript": "tsc --project ./test/tsconfig.json",
  17. "legacy": "tape test/test.js"
  18. },
  19. "pre-commit": [
  20. "test",
  21. "typescript"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/mcollina/fastq.git"
  26. },
  27. "keywords": [
  28. "fast",
  29. "queue",
  30. "async",
  31. "worker"
  32. ],
  33. "author": "Matteo Collina <hello@matteocollina.com>",
  34. "license": "ISC",
  35. "bugs": {
  36. "url": "https://github.com/mcollina/fastq/issues"
  37. },
  38. "homepage": "https://github.com/mcollina/fastq#readme",
  39. "devDependencies": {
  40. "async": "^3.1.0",
  41. "neo-async": "^2.6.1",
  42. "nyc": "^15.0.0",
  43. "pre-commit": "^1.2.2",
  44. "snazzy": "^9.0.0",
  45. "standard": "^16.0.0",
  46. "tape": "^5.0.0",
  47. "typescript": "^5.0.4"
  48. },
  49. "dependencies": {
  50. "reusify": "^1.0.4"
  51. },
  52. "standard": {
  53. "ignore": [
  54. "example.mjs"
  55. ]
  56. }
  57. }