node-eventstore-client/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2016-03-09 20:46:15 +00:00
{
"name": "node-eventstore-client",
2019-11-02 22:40:02 +00:00
"version": "0.2.14",
2016-03-09 20:46:15 +00:00
"description": "A port of the EventStore .Net ClientAPI to Node.js",
"main": "index.js",
"types": "index.d.ts",
2017-10-18 21:39:25 +00:00
"engines": {
"node": ">=5.10"
2017-10-18 21:39:25 +00:00
},
"engineStrict": true,
2016-03-09 20:46:15 +00:00
"scripts": {
2019-11-02 22:40:02 +00:00
"clean": "rm -f lib/dist.js",
"prebuild": "npm run clean",
2019-11-02 22:40:02 +00:00
"build": "webpack -o ./lib/dist.js",
2016-10-15 05:53:23 +00:00
"pretest": "npm run build",
"test": "nodeunit",
2017-02-25 22:12:13 +00:00
"test-debug": "TESTS_VERBOSE_LOGGING=1 nodeunit",
2019-11-02 22:40:02 +00:00
"prepublishOnly": "npm run build && npm run gendocs",
2016-11-08 05:55:52 +00:00
"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",
"index.js",
"index.d.ts"
],
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/node-eventstore-client.git"
2016-03-09 20:46:15 +00:00
},
"keywords": [
"eventstore",
"geteventstore",
"node"
],
"author": "Nicolas Dextraze",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicdex/node-eventstore-client/issues"
2016-03-09 20:46:15 +00:00
},
"homepage": "https://github.com/nicdex/node-eventstore-client#readme",
2016-03-09 20:46:15 +00:00
"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"
},
2016-10-15 05:53:23 +00:00
"devDependencies": {
"jsdoc": "^3.6.3",
"nodeunit": "^0.11.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
2016-10-15 05:53:23 +00:00
}
2016-03-09 20:46:15 +00:00
}