-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "nsq-relayer",
"description": "relay anything you like to nsq",
"version": "2.1.0",
"author": "C J Silverio <ceejceej@gmail.com>",
"bugs": {
"url": "https://github.com/ceejbot/nsq-relayer/issues"
},
"dependencies": {
"bole": "~3.0.2",
"squeaky": "~1.4.1"
},
"devDependencies": {
"coveralls": "~3.0.0",
"eslint-config-ceejbot": "~1.1.0",
"mocha": "~5.0.4",
"must": "~0.13.4",
"nyc": "~11.4.1",
"sinon": "~4.4.3",
"xo": "~0.20.3"
},
"homepage": "https://github.com/ceejbot/nsq-relayer#readme",
"keywords": [
"nsq"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ceejbot/nsq-relayer.git"
},
"scripts": {
"test": "mocha -R spec --exit",
"test:cov": "nyc mocha -R spec --exit",
"test:style": "xo",
"test:travis": "npm run test:cov && npm run test:style"
},
"xo": {
"extends": "eslint-config-ceejbot",
"rules": {
"prefer-arrow-callback": 0,
"semi-style": 0,
"unicorn/import-index": 0
}
}
}