-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.53 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
{
"main": "index.js",
"name": "@naturacosmeticos/iris-nodejs-messenger",
"author": "Natura Cosméticos <TDDAArquitetura@natura.net>",
"version": "2.0.2",
"dependencies": {
"@naturacosmeticos/async-hooks-storage": "^1.0.0",
"@naturacosmeticos/clio-nodejs-logger": "^2.0.0",
"amqplib": "^0.5.2",
"async": "^2.6.1",
"aws-sdk": "^2.505.0",
"lodash": "^4.17.10",
"uuid": "^3.3.2",
"snyk": "^1.316.1",
"sqs-consumer": "^5.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.3.0",
"@naturacosmeticos/eslint-config-natura": "^1.0.0",
"eslint-plugin-import": "^2.14.0",
"faker": "^4.1.0",
"humps": "^2.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"nyc": "^11.7.3",
"raw-body": "^2.3.3",
"sinon": "^5.0.6"
},
"scripts": {
"docs": "esdoc -c .esdoc.json",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"start": "nodemon ./index.js",
"test": "mocha --recursive -r test/init.js --exit",
"test:coverage": "nyc mocha --recursive --exit",
"test:debug": "mocha --recursive --exit --no-timeouts --require architecture-node-base/test-debug",
"test:unit": "NODE_PATH=src:test mocha test/unit/ --recursive --exit",
"test:watch": "mocha --recursive -w --exit",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"contributors": [
"Bruno Cartolari <cartola@vizir.com.br>",
"Daniel Arthaud <daniel@vizir.com.br>",
"Fabrício Campos <fabricio@vizir.com.br>",
"Handrus Nogueira <handrus@gmail.com>",
"Danilo Ribeiro <danilo@ventrue.com.br>",
"Murilo Portescheller <murilo.portescheller@avanade.com>",
"Giancarlo Bonansea <giancarlo.bonansea@accenture.com>",
"Matheus Robert Lichtnow <matheus@vizir.com.br>",
"Vagner Saraiva <vagner@vizir.com.br>"
],
"homepage": "https://github.com/natura-cosmeticos/iris-nodejs-messenger#readme",
"bugs": "https://github.com/natura-cosmeticos/iris-nodejs-messenger/issues",
"keywords": [
"messaging",
"message-queue",
"message-bus",
"queue",
"sns",
"sqs",
"rabbitmq"
],
"license": "MIT",
"snyk": true
}