UNPKG

gremlin

Version:

JavaScript Gremlin Language Variant

65 lines (64 loc) 2.65 kB
{ "name": "gremlin", "version": "3.7.4", "description": "JavaScript Gremlin Language Variant", "author": "Apache TinkerPop team", "keywords": [ "graph", "gremlin", "tinkerpop", "connection", "glv", "driver", "graphdb" ], "license": "Apache-2.0", "dependencies": { "buffer": "^6.0.3", "eventemitter3": "^5.0.1", "readable-stream": "^4.5.2", "uuid": "^9.0.1", "ws": "^8.16.0" }, "devDependencies": { "chai": "~4.5.0", "chai-string": "~1.5.0", "colors": "1.4.0", "cross-env": "^7.0.3", "cucumber": "~6.0.7", "eslint": "^8.42.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.0.0", "grunt": "^1.5.3", "grunt-cli": "~1.5.0", "grunt-jsdoc": "~2.4.1", "mocha": "^10.2.0", "prettier": "^3.0.0" }, "repository": { "type": "git", "url": "https://github.com/apache/tinkerpop.git" }, "homepage": "https://tinkerpop.apache.org/", "bugs": { "url": "https://issues.apache.org/jira/browse/TINKERPOP" }, "scripts": { "test": "npm run unit-test && npm run integration-test", "unit-test": "mocha test/unit/*", "integration-test": "npm run integration-test-graphson30 && npm run integration-test-graphbinary", "integration-test-graphson30": "cross-env CLIENT_MIMETYPE='application/vnd.gremlin-v3.0+json' ./node_modules/mocha/bin/mocha.js test/integration -t 5000", "integration-test-graphbinary": "cross-env CLIENT_MIMETYPE='application/vnd.graphbinary-v1.0' ./node_modules/mocha/bin/mocha.js test/integration -t 5000", "TODO": "# test other mime types like graphbinary stringd", "features": "npm run features-graphson30 && npm run features-graphbinary", "features-graphson30": "cross-env CLIENT_MIMETYPE='application/vnd.gremlin-v3.0+json' cucumber-js --require test/cucumber ../../../../../gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/", "features-graphbinary": "cross-env CLIENT_MIMETYPE='application/vnd.graphbinary-v1.0' cucumber-js --require test/cucumber ../../../../../gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/", "features-docker": "npm run features-graphson30-docker && npm run features-graphbinary-docker", "features-graphson30-docker": "cross-env CLIENT_MIMETYPE='application/vnd.gremlin-v3.0+json' cucumber-js --require test/cucumber ../gremlin-test/", "features-graphbinary-docker": "cross-env CLIENT_MIMETYPE='application/vnd.graphbinary-v1.0' cucumber-js --require test/cucumber ../gremlin-test/", "lint": "eslint --ext .js ." }, "engines": { "node": ">=20" } }