diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-09-20 19:19:01 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-09-20 19:19:01 +0200 |
commit | ced0be930dd86bc204cab5b4e3a1cd83aed68ccf (patch) | |
tree | ede7dcb971554be669e9b4e9db42899c52fed20f /packages/gitbook-plugin-sharing | |
parent | 6d58a90613802b1e65cbf8c027093a1868119781 (diff) | |
download | gitbook-ced0be930dd86bc204cab5b4e3a1cd83aed68ccf.zip gitbook-ced0be930dd86bc204cab5b4e3a1cd83aed68ccf.tar.gz gitbook-ced0be930dd86bc204cab5b4e3a1cd83aed68ccf.tar.bz2 |
Working loading of plugin
Diffstat (limited to 'packages/gitbook-plugin-sharing')
-rw-r--r-- | packages/gitbook-plugin-sharing/package.json | 42 |
1 files changed, 11 insertions, 31 deletions
diff --git a/packages/gitbook-plugin-sharing/package.json b/packages/gitbook-plugin-sharing/package.json index 0ca8dc5..134acb8 100644 --- a/packages/gitbook-plugin-sharing/package.json +++ b/packages/gitbook-plugin-sharing/package.json @@ -4,7 +4,11 @@ "main": "index.js", "version": "1.0.2", "dependencies": { - + "gitbook-core": "^0.0.0", + "react": "^15.3.1" + }, + "devDependencies": { + "gitbook-plugin": "*" }, "engines": { "gitbook": ">=3.0.0" @@ -20,36 +24,12 @@ }, "gitbook": { "properties": { - "facebook": { - "type": "boolean", - "default": true, - "title": "Facebook" - }, - "twitter": { - "type": "boolean", - "default": true, - "title": "Twitter" - }, - "google": { - "type": "boolean", - "default": false, - "title": "Google" - }, - "weibo": { - "type": "boolean", - "default": false, - "description": "Weibo" - }, - "instapaper": { - "type": "boolean", - "default": false, - "description": "Instapaper" - }, - "vk": { - "type": "boolean", - "default": false, - "description": "VK" - }, + "facebook": { "type": "boolean", "default": true, "title": "Facebook" }, + "twitter": { "type": "boolean", "default": true, "title": "Twitter" }, + "google": { "type": "boolean", "default": false, "title": "Google" }, + "weibo": { "type": "boolean", "default": false, "description": "Weibo" }, + "instapaper": { "type": "boolean", "default": false, "description": "Instapaper" }, + "vk": { "type": "boolean", "default": false, "description": "VK" }, "all": { "type": "array", "items": { |