-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 984 Bytes
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "testgpt",
"version": "4.1.0",
"description": "",
"main": "index.js",
"types": "bin/index.d.ts",
"bin": {
"testgpt": "bin/index.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"gpt3",
"openai",
"cli",
"command-line",
"command-line-tool",
"cmd",
"unit testing",
"testing",
"test",
"auto",
"automation"
],
"author": "Fayez Nazzal",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.3.4",
"chalk": "^4.1.0",
"commander": "^10.0.0",
"openai": "^4.4.0",
"tree-sitter-cli": "^0.20.7",
"yaml": "^2.3.1"
},
"repository": "https://github.com/fayez-nazzal/testgpt",
"bugs": "https://github.com/fayez-nazzal/testgpt/issues"
}