Comparing version 0.1.3 to 0.1.4
{ | ||
"name": "braidify", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Synchronization for the Web (reference implementation)", | ||
@@ -12,6 +12,7 @@ "scripts": { | ||
"homepage": "https://braid.org", | ||
"comment": "See package.md for notes and comments on this file.", | ||
"files": [ "protocols/http/**/*", "package/*" ], | ||
"files": [ | ||
"protocols/http/**/*", | ||
"package/*" | ||
], | ||
"exports": { | ||
@@ -18,0 +19,0 @@ "require": "./protocols/http/commonjs-index.js", |
var client = require('./http-client'), | ||
server = require('./http-server') | ||
console.log({ fetch: client.fetch, | ||
http: client.http, | ||
http_server: server }) | ||
module.exports = { fetch: client.fetch, | ||
http: client.http, | ||
http_server: server } |
87656
1929