Browse Source

jsons for npm and bower

Herbert Vojčík 8 years ago
parent
commit
bc30f5b66a
2 changed files with 48 additions and 0 deletions
  1. 25 0
      bower.json
  2. 23 0
      package.json

+ 25 - 0
bower.json

@@ -0,0 +1,25 @@
+{
+  "name": "repre",
+  "main": "index.js",
+  "homepage": "https://github.com/herby/repre",
+  "authors": [
+    "Herbert Vojčík <herby@mailbox.sk>"
+  ],
+  "description": "Recurring (looping until succeeded) promise.",
+  "moduleType": [
+    "amd",
+    "node"
+  ],
+  "keywords": [
+    "promise",
+    "loop"
+  ],
+  "license": "MIT",
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests"
+  ]
+}

+ 23 - 0
package.json

@@ -0,0 +1,23 @@
+{
+  "name": "repre",
+  "version": "0.1.0",
+  "description": "Recurring (looping until succeeded) promise.",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/herby/repre.git"
+  },
+  "keywords": [
+    "promise",
+    "loop"
+  ],
+  "author": "Herbert Vojčík <herby@mailbox.sk>",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/herby/repre/issues"
+  },
+  "homepage": "https://github.com/herby/repre#readme"
+}