Răsfoiți Sursa

Add README, LICENSE and package.json

JC Brand 7 ani în urmă
comite
eb89e63c6d
3 a modificat fișierele cu 45 adăugiri și 0 ștergeri
  1. 3 0
      LICENSE.txt
  2. 18 0
      README.md
  3. 24 0
      package.json

+ 3 - 0
LICENSE.txt

@@ -0,0 +1,3 @@
+Each plugin is licensed independently, see LICENSE.txt in the plugin's directory.
+
+We recommend the Mozilla Public License version 2.

+ 18 - 0
README.md

@@ -0,0 +1,18 @@
+# Converse.js Community Plugins
+
+This repo contains community contributed plugins, not included in the core of Converse.js.
+
+## Creating a plugin
+
+To create a new plugin, use [generator-converse](https://github.com/conversejs/generator-conversejs),
+which is a [Yeoman](http://yeoman.io/) generator.
+
+Install Yeoman and the generator:
+
+    npm install -g yo generator-conversejs
+
+Then, to create a new plugin, run the following:
+
+    $ yo conversejs converse-pluginname
+
+Where `pluginname` should be the name of your plugin.

+ 24 - 0
package.json

@@ -0,0 +1,24 @@
+{
+  "name": "converse-community-plugins",
+  "version": "0.0.1",
+  "description": "Community plugins for Converse.js",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/conversejs/community-plugins.git"
+  },
+  "keywords": [
+    "Converse.js",
+    "XMPP",
+    "plugins"
+  ],
+  "author": "Converse.js Community",
+  "license": "SEE LICENCE IN LICENSE.txt",
+  "bugs": {
+    "url": "https://github.com/conversejs/community-plugins/issues"
+  },
+  "homepage": "https://github.com/conversejs/community-plugins#readme"
+}