summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json17
1 files changed, 11 insertions, 6 deletions
diff --git a/package.json b/package.json
index 9514c8b..43a1b36 100644
--- a/package.json
+++ b/package.json
@@ -3,12 +3,17 @@
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
- "dependencies": {
- "@types/node": "^20.12.8",
- "typescript": "^5.4.5"
- },
+ "dependencies": {},
"scripts": {
"build": "yarn run tsc",
- "start": "yarn build && node build/index.js"
- }
+ "start": "yarn build && node build/index.js",
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest"
+ },
+ "devDependencies": {
+ "@types/node": "^20.12.8",
+ "typescript": "^5.4.5",
+ "@types/jest": "^29.5.12",
+ "jest": "^29.7.0"
+ },
+ "type": "module"
}