Skip to content
This repository was archived by the owner on Nov 3, 2021. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name" : "chuckt",
"description" : "ChuckT is an event transport system built on the SockJS websocket API. This module is the client-side implementation of ChuckT and is designed to complement a server-side implementation (e.g. chuckt-node)",
"main" : "lib/chuckt.js",
"keywords" : [
"events",
"sockjs",
"websockets"
],
"moduleType" : "globals",
"authors" : "Court Ewing",
"license" : "MIT",
"homepage" : "https://github.com/epixa/chuckt",
"repository" : {
"type" : "git",
"url" : "https://github.com/epixa/chuckt.git"
},
"ignore" : [
"**/.*"
],
"dependencies" : {
"sockjs-client" : "sockjs/sockjs-client"
},
"private" : true
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason you wanted to make this private? It makes sense to me to make it available publicly.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I saw the repository was marked as private in package.json. I can change it if you'd like.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah, might as well make it public for bower. It's private in package.json due to poor planning on my part: publishing this to npm would result in a name conflict with the chuckt-node repo.

}