Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/is-object/.jscs.json b/node_modules/is-object/.jscs.json
new file mode 100644
index 0000000..97ab933
--- /dev/null
+++ b/node_modules/is-object/.jscs.json
@@ -0,0 +1,55 @@
+{
+  "requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
+
+  "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
+
+  "disallowSpaceAfterKeywords": [],
+
+  "requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
+  "requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
+  "disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
+  "requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
+  "disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
+
+  "disallowSpacesInsideParentheses": true,
+
+  "disallowSpacesInsideArrayBrackets": true,
+
+  "disallowQuotedKeysInObjects": "allButReserved",
+
+  "disallowSpaceAfterObjectKeys": true,
+
+  "requireCommaBeforeLineBreak": true,
+
+  "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
+  "requireSpaceAfterPrefixUnaryOperators": [],
+
+  "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
+  "requireSpaceBeforePostfixUnaryOperators": [],
+
+  "disallowSpaceBeforeBinaryOperators": [],
+  "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
+
+  "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
+  "disallowSpaceAfterBinaryOperators": [],
+
+  "disallowImplicitTypeConversion": ["binary", "string"],
+
+  "disallowKeywords": ["with", "eval"],
+
+  "validateLineBreaks": "LF",
+
+  "requireKeywordsOnNewLine": [],
+  "disallowKeywordsOnNewLine": ["else"],
+
+  "requireLineFeedAtFileEnd": true,
+
+  "disallowTrailingWhitespace": true,
+
+  "excludeFiles": ["node_modules/**", "vendor/**"],
+
+  "disallowMultipleLineStrings": true,
+
+  "additionalRules": []
+}
+