summaryrefslogtreecommitdiff
path: root/packages/taler-integrationtests/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-integrationtests/package.json')
-rw-r--r--packages/taler-integrationtests/package.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/taler-integrationtests/package.json b/packages/taler-integrationtests/package.json
new file mode 100644
index 000000000..713852370
--- /dev/null
+++ b/packages/taler-integrationtests/package.json
@@ -0,0 +1,43 @@
+{
+ "name": "taler-integrationtests",
+ "version": "0.0.1",
+ "description": "Integration tests and fault injection for GNU Taler components",
+ "main": "index.js",
+ "scripts": {
+ "compile": "tsc",
+ "test": "tsc && ava"
+ },
+ "author": "Florian Dold <dold@taler.net>",
+ "license": "AGPL-3.0-or-later",
+ "devDependencies": {
+ "@ava/typescript": "^1.1.1",
+ "ava": "^3.11.1",
+ "esm": "^3.2.25",
+ "source-map-support": "^0.5.19",
+ "ts-node": "^8.10.2"
+ },
+ "dependencies": {
+ "axios": "^0.19.2",
+ "taler-wallet-core": "workspace:*",
+ "tslib": "^2.0.0",
+ "typescript": "^3.9.7"
+ },
+ "ava": {
+ "require": [
+ "esm"
+ ],
+ "files": [
+ "src/**/test-*"
+ ],
+ "typescript": {
+ "extensions": [
+ "js",
+ "ts",
+ "tsx"
+ ],
+ "rewritePaths": {
+ "src/": "lib/"
+ }
+ }
+ }
+}