Add command to run the Node debugger and interactive tests.
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 23 Feb 2020 04:43:48 +0000 (23:43 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 23 Feb 2020 04:47:33 +0000 (23:47 -0500)
package.json

index 6fe5c77136983ad98afc5e7331c57c9062f77d67..c25db785cea38a337673ca5705bff9943a6cdaf5 100644 (file)
@@ -4,8 +4,10 @@
   "description": "A library for modeling individual US tax returns.",
   "main": "src/index.js",
   "scripts": {
+    "dev": "jest --watch",
     "test": "jest",
-    "check": "tsc --noEmit"
+    "check": "tsc --noEmit",
+    "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false"
   },
   "author": "Robert Sesek",
   "license": "ISC",