initial commit

This commit is contained in:
Dennes Schäffler
2025-11-11 09:00:50 +01:00
commit 9a9e0aed87
12 changed files with 466 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "venabo-gql-templates",
"version": "1.0.0",
"description": "GraphQL test runner for Venabo API",
"main": "run-tests.js",
"type": "module",
"scripts": {
"test": "node run-tests.js",
"test:verbose": "node run-tests.js --verbose"
},
"keywords": [
"graphql",
"testing",
"venabo"
],
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2"
}
}