forked from nats-io/stan.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-nats-streaming",
"version": "0.0.50",
"description": "Node.js client for NATS Streaming, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
"streaming",
"messaging",
"pubsub",
"publish",
"subscribe",
"queue",
"distributed",
"queueing"
],
"homepage": "https://nats.io",
"repository": {
"type": "git",
"url": "[email protected]:nats-io/node-nats-streaming.git"
},
"bugs": {
"url": "https://github.com/nats-io/node-nats-streaming/issues"
},
"license": "Apache-2.0",
"private": false,
"author": {
"name": "The NATS Authors"
},
"contributors": [],
"main": "./index.js",
"scripts": {
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"depcheck": "dependency-check . lib/* lib/pb/*",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*.js",
"gen": "protoc --js_out=import_style=commonjs,library=lib/pb/protocol_pb,binary:. lib/pb/protocol.proto",
"lint": "jshint --reporter node_modules/jshint-stylish lib/*.js test/*.js test/support/*.js examples/*.js",
"npm-publish": "npm publish https://github.com/nats-io/node-nats-streaming.git --access public",
"test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:unit",
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' istanbul cover _mocha -- -R mocha-multi --exit --timeout 10000 --slow 750 && istanbul check-coverage"
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"google-protobuf": "^3.3.0",
"nats": "^1.0.0",
"nuid": "^1.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"dependency-check": "2.6.x",
"istanbul": "^0.4.5",
"jshint": "^2.9.6",
"jshint-stylish": "^2.2.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "1.2.x",
"mocha-multi": "^1.0.1",
"should": "^11.2.1"
},
"typings": "./index.d.ts"
}