UNPKG

1.95 kBJSONView Raw
1{
2 "name": "nats",
3 "version": "1.2.2",
4 "description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
5 "keywords": [
6 "nats",
7 "messaging",
8 "pubsub",
9 "publish",
10 "subscribe",
11 "queue",
12 "distributed",
13 "queueing"
14 ],
15 "homepage": "https://nats.io",
16 "repository": {
17 "type": "git",
18 "url": "git@github.com:nats-io/node-nats.git"
19 },
20 "bugs": {
21 "url": "https://github.com/nats-io/node-nats/issues"
22 },
23 "license": "Apache-2.0",
24 "private": false,
25 "author": {
26 "name": "The NATS Authors"
27 },
28 "contributors": [],
29 "main": "./index.js",
30 "scripts": {
31 "depcheck": "dependency-check . lib/*",
32 "depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*",
33 "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",
34 "test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:unit",
35 "coveralls": "npm run cover -- --report lcovonly && cat ./reports/coverage/lcov.info | coveralls",
36 "cover": "istanbul cover _mocha",
37 "lint": "if-node-version >=4 eslint ./lib ./examples ./benchmark ./test",
38 "fmt": "js-beautify -n --config crockford.jscsrc -r lib/* test/*.js test/support/*.js examples/* benchmark/*.js"
39 },
40 "engines": {
41 "node": ">= 4.5.0"
42 },
43 "dependencies": {
44 "nuid": "^1.0.0",
45 "ts-nkeys": "^1.0.8"
46 },
47 "devDependencies": {
48 "minimist": "^1.2.0",
49 "coveralls": "^3.0.2",
50 "dependency-check": "^3.2.1",
51 "eslint": "^5.10.0",
52 "if-node-version": "^1.1.1",
53 "istanbul": "^0.4.5",
54 "js-beautify": "^1.6.12",
55 "jshint": "^2.9.6",
56 "jshint-stylish": "2.2.x",
57 "mocha": "^5.2.0",
58 "mocha-lcov-reporter": "1.2.x",
59 "mocha-multi": "^1.0.1",
60 "should": ">= 9.0.0"
61 },
62 "typings": "./index.d.ts"
63}