版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vitest/expect",
  3. "type": "module",
  4. "version": "0.29.8",
  5. "description": "Jest's expect matchers as a Chai plugin",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/vitest-dev/vitest.git",
  10. "directory": "packages/expect"
  11. },
  12. "sideEffects": false,
  13. "exports": {
  14. ".": {
  15. "types": "./dist/index.d.ts",
  16. "import": "./dist/index.js"
  17. },
  18. "./*": "./*"
  19. },
  20. "main": "./dist/index.js",
  21. "module": "./dist/index.js",
  22. "types": "./dist/index.d.ts",
  23. "files": [
  24. "dist"
  25. ],
  26. "dependencies": {
  27. "chai": "^4.3.7",
  28. "@vitest/utils": "0.29.8",
  29. "@vitest/spy": "0.29.8"
  30. },
  31. "devDependencies": {
  32. "picocolors": "^1.0.0"
  33. },
  34. "scripts": {
  35. "build": "rimraf dist && rollup -c",
  36. "dev": "rollup -c --watch"
  37. }
  38. }