node-eventstore-client/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2016-03-09 20:46:15 +00:00
{
"name": "eventstore-node",
2016-11-08 05:55:52 +00:00
"version": "0.0.10",
2016-03-09 20:46:15 +00:00
"description": "A port of the EventStore .Net ClientAPI to Node.js",
"main": "index.js",
"scripts": {
2016-10-15 05:53:23 +00:00
"clean": "rm lib/dist.js",
"build": "webpack",
"pretest": "npm run build",
"test": "nodeunit",
2016-11-08 05:55:52 +00:00
"prepublish": "npm run build && npm run gendocs",
"gendocs": "rm -rf docs && jsdoc src -r -d docs"
2016-03-09 20:46:15 +00:00
},
"files": [
"lib",
2016-11-08 05:55:52 +00:00
"docs",
"src"
],
2016-11-08 05:55:52 +00:00
"directories": {
"lib": "lib",
"doc": "docs",
"example": "samples"
},
2016-03-09 20:46:15 +00:00
"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-10-15 05:53:23 +00:00
"devDependencies": {
2016-11-08 05:55:52 +00:00
"jsdoc": "^3.4.2",
2016-10-15 05:53:23 +00:00
"nodeunit": "^0.10.2",
"webpack": "^1.13.2"
}
2016-03-09 20:46:15 +00:00
}