From 04bfa92143cdcd3d625540c8458ec38c6e873f00 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 22 Feb 2020 23:43:48 -0500 Subject: [PATCH] Add command to run the Node debugger and interactive tests. --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6fe5c77..c25db78 100644 --- a/package.json +++ b/package.json @@ -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", -- 2.22.5