You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
{ |
|
"name": "node-eventstore-client", |
|
"version": "0.2.13", |
|
"description": "A port of the EventStore .Net ClientAPI to Node.js", |
|
"main": "index.js", |
|
"types": "index.d.ts", |
|
"engines": { |
|
"node": ">=4.0" |
|
}, |
|
"engineStrict": true, |
|
"scripts": { |
|
"clean": "rm lib/dist.js", |
|
"build": "webpack", |
|
"pretest": "npm run build", |
|
"test": "nodeunit", |
|
"test-debug": "TESTS_VERBOSE_LOGGING=1 nodeunit", |
|
"prepublish": "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": { |
|
"long": "^3.2", |
|
"protobufjs": "^6.8.8", |
|
"strict-event-emitter-types": "^1.2.0", |
|
"uuid": "^3.0.1" |
|
}, |
|
"devDependencies": { |
|
"@types/long": "^3.0.32", |
|
"@types/node": "^12.12.5", |
|
"jsdoc": "^3.6.3", |
|
"nodeunit": "^0.11.3", |
|
"webpack": "^4.41.2", |
|
"webpack-cli": "^3.3.10" |
|
} |
|
}
|
|
|