From e757bf1e6623fc69dd5c7218bf4a57a1add1a030 Mon Sep 17 00:00:00 2001 From: abe545 Date: Wed, 12 Mar 2014 00:10:59 -0400 Subject: [PATCH] Added all files needed to create the strider plugin. --- config/config.html | 0 config/config.js | 0 index.js | 2 ++ lib/webapp.js | 0 lib/worker.js | 0 package.json | 40 ++++++++++++++++++++++++++++++++++++++++ 6 files changed, 42 insertions(+) create mode 100644 config/config.html create mode 100644 config/config.js create mode 100644 index.js create mode 100644 lib/webapp.js create mode 100644 lib/worker.js create mode 100644 package.json diff --git a/config/config.html b/config/config.html new file mode 100644 index 0000000..e69de29 diff --git a/config/config.js b/config/config.js new file mode 100644 index 0000000..e69de29 diff --git a/index.js b/index.js new file mode 100644 index 0000000..aa979f4 --- /dev/null +++ b/index.js @@ -0,0 +1,2 @@ + +module.exports = require('./lib') diff --git a/lib/webapp.js b/lib/webapp.js new file mode 100644 index 0000000..e69de29 diff --git a/lib/worker.js b/lib/worker.js new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..fef89fe --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "codeplex-for-strider", + "version": "0.0.0", + "description": "Provides access to codeplex for strider", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/abe545/codeplex-for-strider.git" + }, + "keywords": [ + "codeplex", + "strider" + ], + "author": { + "name": "Abraham Heidebrecht" + }, + "license": "GPL-2.0", + "readmeFilename": "Readme.md", + "strider": { + "id": "codeplex", + "title": "Codeplex", + "type": "provider", + "hosted": true, + "config": { + "controller": "CodeplexController" + }, + "accountConfig": { + "setupLink": "/auth/codeplex" + }, + "webapp": "lib/webapp.js", + "worker": "lib/worker.js", + "inline_icon": "windows" + }, + "dependencies": { + }, + "bugs": { + "url": "https://github.com/abe545/codeplex-for-strider/issues" + }, + "homepage": "https://github.com/abe545/codeplex-for-strider" +}