Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

package.json 599 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  1. {
  2. "name": "promptfoo-jest-vitest-integration-example",
  3. "version": "1.0.0",
  4. "description": "A small example of testing LLM prompts using Jest, Vitest, and promptfoo.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "jest",
  8. "test:jest": "npx jest",
  9. "test:vitest": "npx vitest"
  10. },
  11. "keywords": [
  12. "jest",
  13. "vitest",
  14. "prompt testing",
  15. "LLM",
  16. "promptfoo"
  17. ],
  18. "author": "Ian Webster",
  19. "license": "MIT",
  20. "devDependencies": {
  21. "@types/jest": "^29.5.12",
  22. "jest": "^29.7.0",
  23. "ts-jest": "^29.1.5",
  24. "typescript": "^5.5.3",
  25. "vitest": "^1.6.0"
  26. }
  27. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...