From b24afe26531492e3bf6fc1cb3393afcc7fd118be Mon Sep 17 00:00:00 2001
From: Fabio Berger <me@fabioberger.com>
Date: Wed, 14 Jun 2017 11:05:23 +0200
Subject: Update doc:json command to exclude privates and externals

---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index 4b4a4ec57..8c41172ee 100644
--- a/package.json
+++ b/package.json
@@ -21,7 +21,7 @@
     "test:coverage": "nyc npm run test --all",
     "update_contracts": "for i in ${npm_package_config_artifacts}; do copyfiles -u 4 ../contracts/build/contracts/$i.json ../0x.js/src/artifacts; done;",
     "testrpc": "testrpc -p 8545 --networkId 50 -m \"${npm_package_config_mnemonic}\"",
-    "docs:json": "typedoc --json docs/index.json .",
+    "docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json docs/index.json .",
     "docs:generate": "typedoc --out docs .",
     "docs:open": "opn docs/index.html",
     "clean": "shx rm -rf _bundles lib test_temp",
-- 
cgit