summary refs log tree commit diff stats
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json13
1 files changed, 10 insertions, 3 deletions
diff --git a/package.json b/package.json
index 50b672b..45ef027 100644
--- a/package.json
+++ b/package.json
@@ -8,12 +8,19 @@
   "license": "MIT",
   "scripts": {
     "dev:assist": "auto-install --yarn",
-    "format": "prettier-standard 'src/**/*.js'"
+    "format": "prettier-standard 'src/**/*.js'",
+    "test": "ava '**/*.test.js'",
+    "test:watch": "ava --watch '**/*.test.js'"
   },
   "devDependencies": {
     "auto-install": "^1.7.4",
+    "ava": "^0.19.1",
     "prettier-standard": "^5.1.0",
-    "standard": "^10.0.2"
+    "standard": "^10.0.2",
+    "supertest": "^3.0.0"
   },
-  "dependencies": {}
+  "dependencies": {
+    "koa": "^2.2.0",
+    "koa-router": "^7.2.1"
+  }
 }