Browse Source

[project] init project

mightyplow 6 years ago
commit
dadf6533fc
3 changed files with 30 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 5 0
      package-lock.json
  3. 23 0
      package.json

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+.idea/
+node_modules/

+ 5 - 0
package-lock.json

@@ -0,0 +1,5 @@
+{
+  "name": "@mightyplow/hyperapp-components",
+  "version": "1.0.0",
+  "lockfileVersion": 1
+}

+ 23 - 0
package.json

@@ -0,0 +1,23 @@
+{
+  "name": "@mightyplow/hyperapp-components",
+  "version": "1.0.0",
+  "description": "A set of reusable hyperapp components",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.mightyplow.net/mightyplow/hyperapp-components"
+  },
+  "keywords": [
+    "hyperapp",
+    "components",
+    "js"
+  ],
+  "author": "mightyplow@gmail.com",
+  "license": "ISC",
+  "sideEffects": false,
+  "devDependencies": {},
+  "dependencies": {}
+}