Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zer

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zer - npm Package Compare versions

Comparing version 0.0.0 to 0.1.0

lib/chain-builder.js

45

package.json
{
"name": "zer",
"version": "0.0.0",
"version": "0.1.0",
"description": "Generate Gremlin queries by chaining JavaScript function calls",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "babel -d lib --ignore *.test.js src",
"build:watch": "npm run build -- --watch",
"postinstall": "postinstall-build lib",
"test": "mocha $(find src -path '*test.js') --compilers js:babel-register --recursive --reporter spec",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"postinstall-build": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.8",
"chai": "^3.5.0",
"eslint": "^3.16.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-flowtype-errors": "^3.0.0",
"flow-bin": "^0.46.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
},
"files": [
"README.md",
"lib"
],
"repository": {
"type": "git",
"url": "effrqzfzef"
"url": "git@github.com:jbmusso/zer.git"
},

@@ -30,3 +49,7 @@ "keywords": [

"proxy",
"generate"
"generate",
"serializer",
"serialization",
"sql",
"groovy"
],

@@ -33,0 +56,0 @@ "author": "Jean-Baptiste Musso <jbmusso+github@gmail.com>",

@@ -32,4 +32,6 @@ # zer

Zer supports allows you to output Objects, not just Strings. This is especially useful when you wish to escape some arguments from your chain, such as when creating a DSL for a database client.
## Argument escaping
Zer allows you to output Objects, not just Strings. This is especially useful when you wish to escape some arguments from your chain, such as when creating a DSL for a database client (SQL, Gremlin...).
```javascript

@@ -36,0 +38,0 @@ const chain = g.V().has('name', 'Alice').repeat(out('knows')).until(has('name', 'Bob'));

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc