-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
35 lines (35 loc) · 839 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "event-store-client",
"version": "1.1.0",
"description": "Client library for connecting to Event Store instances over TCP/IP",
"author": "Carey Bishop",
"license": "BSD-2-Clause",
"types": "./event-store-client.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/x-cubed/event-store-client.git"
},
"main": "index.js",
"dependencies": {
"argument-validator": "^0.1.0",
"long": "~3.1.0",
"protobufjs": "~5.0.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"mocha": "^5.2.0",
"mocha-teamcity-reporter": "~2.5.1",
"node-docker-api": "^1.1.22",
"optimist": "~0.6.1",
"uuid-parse": "^1.0.0"
},
"scripts": {
"test": "mocha",
"test-teamcity": "mocha -R mocha-teamcity-reporter"
},
"keywords": [
"eventstore",
"event",
"store"
]
}