node-eventstore-client/package.json
2017-01-29 11:09:09 -08:00

54 lines
1.2 KiB
JSON

{
"name": "eventstore-node",
"version": "0.0.25",
"description": "A port of the EventStore .Net ClientAPI to Node.js",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm lib/dist.js",
"build": "webpack",
"pretest": "npm run build",
"test": "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/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": {
"@types/node": "^6.0.47",
"long": "^3.2",
"protobufjs": "^5.0",
"uuid": "^2.0"
},
"devDependencies": {
"jsdoc": "^3.4.2",
"nodeunit": "^0.10.2",
"webpack": "^1.13.2"
}
}