-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 873 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 873 Bytes
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
28
29
30
31
32
33
34
35
36
{
"name": "promptdiff",
"version": "0.1.0",
"description": "Semantic diff, lint, and A/B compare for LLM prompts",
"bin": {
"promptdiff": "./bin/promptdiff.js"
},
"scripts": {
"test": "jest --verbose",
"test:unit": "jest --testPathPattern=unit --verbose",
"test:integration": "jest --testPathPattern=integration --verbose",
"test:uat": "jest --testPathPattern=uat --verbose",
"test:coverage": "jest --coverage --verbose"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 85,
"lines": 85,
"statements": 85
}
}
},
"dependencies": {
"commander": "^11.0.0",
"chalk": "^4.1.2",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"jest": "^29.0.0",
"@jest/globals": "^29.0.0"
}
}