-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.66 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "elastic-queue",
"version": "0.3.0",
"description": "Elasticsearch nodejs batching queue",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/soxbox/elastic-queue.git"
},
"keywords": [
"elasticsearch",
"nodejs",
"queue",
"batch",
"ratelimit",
"concurrency"
],
"author": "Tim DeDecker <tim@soxboxsoftware.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/soxbox/elastic-queue/issues"
},
"homepage": "https://github.com/soxbox/elastic-queue",
"dependencies": {
"async": ">=0.9 <2.0",
"elasticsearch": ">4.0",
"hoek": "^2.11.1"
},
"devDependencies": {
"coffee-script": "^1.9.1",
"del": "^2.0.2",
"gulp": "^3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-coffee-istanbul": "^0.7.0",
"gulp-coffeelint": "^0.5.0",
"gulp-mocha": "^2.0.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-util": "^3.0.4"
},
"coffeelintConfig": {
"arrow_spacing": {
"name": "arrow_spacing",
"level": "error"
},
"max_line_length": {
"name": "max_line_length",
"value": 120,
"level": "warn",
"limitComments": false
},
"indentation": {
"name": "indentation",
"value": 2,
"level": "warn"
},
"no_empty_param_list": {
"name": "no_empty_param_list",
"level": "ignore"
},
"cyclomatic_complexity": {
"name": "cyclomatic_complexity",
"value": 22,
"level": "error"
},
"no_unnecessary_fat_arrows": {
"name": "no_unnecessary_fat_arrows",
"level": "error"
}
}
}