node-eventstore-client/package.json

45 lines
946 B
JSON
Raw Normal View History

2016-03-09 20:46:15 +00:00
{
"name": "eventstore-node",
2016-03-17 06:19:31 +00:00
"version": "0.0.2",
2016-03-09 20:46:15 +00:00
"description": "A port of the EventStore .Net ClientAPI to Node.js",
"main": "index.js",
2016-10-15 05:53:23 +00:00
"directories": {
"lib": "lib",
"test": "test"
},
2016-03-09 20:46:15 +00:00
"scripts": {
2016-10-15 05:53:23 +00:00
"clean": "rm lib/dist.js",
"build": "webpack",
"pretest": "npm run build",
2016-03-09 20:46:15 +00:00
"test": "nodeunit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicdex/eventstore-node.git"
},
"keywords": [
"eventstore",
"geteventstore",
"node"
],
"author": "Nicolas Dextraze",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicdex/eventstore-node/issues"
},
"homepage": "https://github.com/nicdex/eventstore-node#readme",
"dependencies": {
2016-10-15 05:53:23 +00:00
"long": "^3.2",
"protobufjs": "^5.0",
"uuid": "^2.0"
},
2016-03-17 06:18:48 +00:00
"engines": {
"node": ">=0.12"
},
2016-10-15 05:53:23 +00:00
"engineStrict": true,
"devDependencies": {
"nodeunit": "^0.10.2",
"webpack": "^1.13.2"
}
2016-03-09 20:46:15 +00:00
}