]> dreyeck.freedombox.rocks Git - idiomatic.git/commitdiff
oops. package.json required for install main
authorWard Cunningham <ward@c2.com>
Sun, 1 Dec 2024 16:07:32 +0000 (08:07 -0800)
committerWard Cunningham <ward@c2.com>
Sun, 1 Dec 2024 16:07:32 +0000 (08:07 -0800)
package.json [new file with mode: 0644]

diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..df7fe02
--- /dev/null
@@ -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"
+  }
+}