f79a0444f6
* Discovering process adapted from EventStore scala client * Use DNS for first discover but also for reconnoctions (the aim is to be able to reconnect even if all nodes have new IP addresses eg. after rolling update in a cloud environment) * Being able to perform proper unit testing
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "node-eventstore-client",
|
|
"version": "0.2.14",
|
|
"description": "A port of the EventStore .Net ClientAPI to Node.js",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"engines": {
|
|
"node": ">=5.10"
|
|
},
|
|
"engineStrict": true,
|
|
"scripts": {
|
|
"clean": "rm -f lib/dist.js",
|
|
"prebuild": "npm run clean",
|
|
"build": "webpack -o ./lib/dist.js",
|
|
"pretest": "npm run build",
|
|
"test": "nodeunit",
|
|
"test-debug": "TESTS_VERBOSE_LOGGING=1 nodeunit",
|
|
"test:jest:watch": "jest --watch --coverage",
|
|
"prepublishOnly": "npm run build && npm run gendocs",
|
|
"gendocs": "rm -rf docs && jsdoc src -r -d docs"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"docs",
|
|
"src",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"directories": {
|
|
"lib": "lib",
|
|
"doc": "docs",
|
|
"example": "samples"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nicdex/node-eventstore-client.git"
|
|
},
|
|
"keywords": [
|
|
"eventstore",
|
|
"geteventstore",
|
|
"node"
|
|
],
|
|
"author": "Nicolas Dextraze",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nicdex/node-eventstore-client/issues"
|
|
},
|
|
"homepage": "https://github.com/nicdex/node-eventstore-client#readme",
|
|
"dependencies": {
|
|
"@types/long": "^3.0.32",
|
|
"@types/node": ">=5.10",
|
|
"long": "^3.2.0",
|
|
"protobufjs": "^6.8.8",
|
|
"strict-event-emitter-types": "^1.2.0",
|
|
"uuid": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^26.4.2",
|
|
"jsdoc": "^3.6.3",
|
|
"nodeunit": "^0.11.3",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.10"
|
|
}
|
|
}
|