forked from nats-io/stan.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.81 KB
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
{
"name": "node-nats-streaming",
"version": "0.0.3",
"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": "git@github.com:nats-io/node-nats-streaming.git"
},
"bugs": {
"url": "https://github.com/nats-io/node-nats-streaming/issues"
},
"private": false,
"author": {
"name": "Alberto Ricart",
"email": "alberto.ricart@apcera.com"
},
"contributors": [],
"main": "./index.js",
"scripts": {
"lint": "jshint --reporter node_modules/jshint-stylish lib/*.js test/*.js test/support/*.js examples/*.js",
"depcheck": "dependency-check . lib/* lib/pb/*",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*.js",
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' istanbul cover _mocha -- -R mocha-multi --timeout 10000 --slow 750 && istanbul check-coverage",
"test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:unit",
"coveralls": "npm run cover -- --report lcovonly && cat ./reports/coverage/lcov.info | coveralls",
"cover": "istanbul cover _mocha"
},
"engines": {
"node": ">= .10.x"
},
"dependencies": {
"google-protobuf": "^3.0.0-alpha.6.2",
"nats": ">= 0.6.4"
},
"devDependencies": {
"jshint": "2.9.x",
"jshint-stylish": "2.2.x",
"mocha": "3.0.x",
"mocha-multi": "0.9.x",
"mocha-lcov-reporter": "1.2.x",
"dependency-check": "2.6.x",
"istanbul": "0.4.x",
"coveralls": "^2.11.2",
"should": ">= 9.0.0"
},
"typings": "./index.d.ts"
}