-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "redis-ps",
"version": "1.0.1",
"description": "Wrapper for easy communication between processes via Redis Pub\\Sub.",
"main": "src/index.js",
"scripts": {
"test": "ava",
"test:dev": "ava --watch",
"test:debug": "node --inspect --inspect-brk --require babel-register node_modules/ava/profile.js ",
"cover": "nyc ava",
"postcover": "nyc report --reporter=lcov",
"report-coverage": "catw coverage/lcov.info | coveralls",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeslaCtroitel/node-redis-pubsub.git"
},
"keywords": [
"redis",
"pubsub",
"redis-pubsub"
],
"author": "EnRoute <nnsceg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeslaCtroitel/node-redis-pubsub/issues"
},
"homepage": "https://github.com/TeslaCtroitel/node-redis-pubsub#readme",
"devDependencies": {
"ava": "^0.23.0",
"catw": "^1.0.1",
"coveralls": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsdoc": "^3.1.2",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"nyc": "^11.1.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"ioredis": "^3.1.4"
},
"engines": {
"node": ">=6.10.0"
},
"eslintConfig": {
"root": true,
"extends": "eslint-config-airbnb-base",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
},
"env": {
"node": true
},
"rules": {
"strict": "error",
"no-restricted-syntax": "off",
"jsdoc/check-param-names": 1,
"jsdoc/check-tag-names": 1,
"jsdoc/check-types": 1,
"jsdoc/newline-after-description": 1,
"jsdoc/require-description-complete-sentence": 1,
"jsdoc/require-example": 0,
"jsdoc/require-hyphen-before-param-description": 1,
"jsdoc/require-param": 1,
"jsdoc/require-param-description": 1,
"jsdoc/require-param-type": "error",
"jsdoc/require-returns-description": 1,
"jsdoc/require-returns-type": 1
},
"plugins": [
"jsdoc"
]
},
"ava": {
"files": [
"**/*.test.js",
"**/*.spec.js",
"test/**/*.js"
],
"source": [
"src/*"
],
"verbose": true
},
"lint-staged": {
"*.js": [
"eslint --fix ",
"git add"
]
},
"files": [
"!src/**/*.test.js",
"src/**",
"README.md",
"LICENSE"
]
}