This repository has been archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 1.79 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
{
"name": "@rootstream/sqs-rpc",
"version": "1.0.1",
"description": "RPC solution based on AWS SQS queues",
"main": "index.js",
"scripts": {
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootstream/sqs-rpc.git"
},
"keywords": [
"sqs",
"rpc"
],
"author": "Sepehr Laal",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootstream/sqs-rpc/issues"
},
"homepage": "https://github.com/rootstream/sqs-rpc#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.5.0"
},
"dependencies": {
"@rootstream/once": "^1.0.0",
"bluebird": "^3.5.5",
"debug": "^4.1.1",
"eventemitter2": "^5.0.1",
"lodash": "^4.17.15",
"rc": "^1.2.8",
"sqs-consumer": "^5.4.0",
"uniqid": "^5.0.3"
},
"nyc": {
"reporter": [
"text-summary",
"html"
],
"cache": false,
"instrument": true
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"jsxBracketSameLine": true,
"trailingComma": "es5"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": [
"plugin:prettier/recommended",
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"legacyDecorators": true
}
},
"rules": {
"semi": "error",
"strict": [
"error",
"global"
],
"max-len": [
"error",
{
"code": 120,
"ignoreUrls": true
}
]
}
}
}