Comparing version 0.0.0 to 0.1.0
{ | ||
"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')); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18254
53
1
14
428
1
1
+ Addedpostinstall-build@^5.0.0
+ Addedpostinstall-build@5.0.3(transitive)