forked from nats-io/nats.node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "nats",
"version": "0.4.4",
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
"messaging",
"pubsub",
"publish",
"subscribe",
"queue",
"distributed",
"queueing"
],
"homepage": "https://nats.io",
"repository": {
"type": "git",
"url": "[email protected]:nats-io/node-nats.git"
},
"bugs": {
"url": "https://github.com/nats-io/node-nats/issues"
},
"license": "MIT",
"private": false,
"author": {
"name": "Derek Collison",
"email": "[email protected]"
},
"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/*",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*",
"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": "cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {},
"devDependencies": {
"jshint": "2.8.x",
"jshint-stylish": "2.0.x",
"mocha": "2.2.x",
"mocha-multi": "0.7.x",
"mocha-lcov-reporter": "^0.0.2",
"dependency-check": "2.5.x",
"istanbul": "^0.3.17",
"coveralls": "^2.11.2",
"should": ">= 7.0.0"
}
}