From: Ward Cunningham Date: Sun, 1 Dec 2024 16:07:32 +0000 (-0800) Subject: oops. package.json required for install X-Git-Url: https://dreyeck.freedombox.rocks/gitweb/idiomatic.git/commitdiff_plain/07c45e7494608140cbc197dd12753b7be1a909c6?ds=sidebyside;hp=6dd85f31cb74c4597a1a625e097e29e89ed83f41 oops. package.json required for install --- 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" + } +}