-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
75 lines (75 loc) · 1.65 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pythagora",
"version": "0.0.79",
"author": {
"name": "Zvonimir Sabljic",
"email": "[email protected]"
},
"license": "ISC",
"description": "Generate integration tests by recording server activity without writing a single line of code.",
"repository": {
"type": "git",
"url": "https://github.com/Pythagora-io/pythagora"
},
"homepage": "https://pythagora.ai/",
"main": "src/Pythagora.js",
"scripts": {
"publish-pythagora": "src/bin/publish.bash",
"prepublishOnly": "node src/bin/prepublish.js",
"postinstall": "node src/bin/postinstall.js",
"test": "npx jest ./pythagora_tests/ --coverage",
"generate-unit-tests": "npx pythagora --unit-tests --path ./src"
},
"bin": {
"pythagora": "src/bin/run.js"
},
"engines": {
"node": ">=14.x"
},
"dependencies": {
"@mswjs/interceptors": "^0.19.2",
"@pythagora.io/js-code-processing": "^0.0.4",
"axios": "^1.2.2",
"blessed": "^0.1.81",
"body-parser": "^1.20.1",
"handlebars": "^4.7.7",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"tryrequire": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"mongodb": "^5.6.0"
},
"contributors": [
{
"name": "Zvonimir Sabljic",
"email": "[email protected]"
},
{
"name": "Leon Ostrez",
"email": "[email protected]"
}
],
"keywords": [
"test",
"testing",
"automation",
"automated testing",
"unit",
"unit testing",
"GPT",
"integration",
"integration testing",
"mock",
"api",
"http",
"MERN",
"MEAN",
"mongoose",
"mongodb",
"redis",
"express"
]
}