summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorLizzy Hunt <lizzy.hunt@usu.edu>2024-03-05 14:49:46 -0700
committerLizzy Hunt <lizzy.hunt@usu.edu>2024-03-05 14:56:17 -0700
commit5e9a34e64254000b9922d69697774c430cdeca36 (patch)
treece6c14e7ff698c668d209282720a66e6af1674d0 /package.json
parent2f77b3fb5a102224c83db2f1fa093c278db716e5 (diff)
downloadcps-interpreter-5e9a34e64254000b9922d69697774c430cdeca36.tar.gz
cps-interpreter-5e9a34e64254000b9922d69697774c430cdeca36.zip
fix parsing of RecordExpressions
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/package.json b/package.json
index 163631d..11d6c63 100644
--- a/package.json
+++ b/package.json
@@ -10,9 +10,13 @@
},
"dependencies": {
"minimist": "^1.2.8",
+ "nodemon": "^3.1.0",
"peggy": "^4.0.0",
"prettier": "^3.2.5",
"prettier-plugin-pegjs": "^2.0.2",
"ts-pegjs": "^4.2.1"
+ },
+ "scripts": {
+ "watch-test": "nodemon -e ts,cps --exec 'bun test'"
}
-} \ No newline at end of file
+}