From 07c45e7494608140cbc197dd12753b7be1a909c6 Mon Sep 17 00:00:00 2001 From: Ward Cunningham Date: Sun, 1 Dec 2024 08:07:32 -0800 Subject: [PATCH] oops. package.json required for install --- package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..df7fe02 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "idiomatic", + "version": "1.0.0", + "description": "Explore coding idioms in javascrip code", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "nodemon ./index.js" + }, + "keywords": [ + "javascript", + "idiom", + "syntax" + ], + "author": "Ward Cunningham", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^8.14.0", + "express": "^4.21.1" + }, + "devDependencies": { + "nodemon": "^3.1.7" + } +} -- 2.39.5