-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.68 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
{
"name": "sqs-consumer-boilerplate",
"version": "0.0.1",
"description": "sqs consumer boilerplate",
"main": "index.js",
"scripts": {
"start": "node ./bin/consumer.js",
"dev": "NODE_ENV=development nodemon ./bin/consumer.js",
"test": "NODE_ENV=test npm run test:unit",
"test:watch": "NODE_ENV=test npm run test:unit -- --watch",
"test:unit": "NODE_ENV=test mocha tests/support/support.js tests/unit/**/*.test.js --opts tests/mocha.opts",
"lint": "eslint -c .eslintrc src tests",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"cover": "NODE_ENV=test nyc npm run test"
},
"keywords": [
"sqs",
"consumer",
"boilerplate"
],
"author": "Mathieu Doyon <mathieu.doyon@ssense.com>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.3",
"chai": "^4.0.0",
"cucumber": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"nyc": "^10.3.2",
"pre-commit": "^1.2.2",
"supertest": "^3.0.0"
},
"dependencies": {
"@ssense/node-logger": "^1.1.2",
"aws-sdk": "^2.58.0",
"babel-core": "^6.24.1",
"babel-generator": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-class-display-name": "^2.1.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"bluebird": "^3.5.0",
"joi": "^10.5.0",
"sqs-consumer": "^3.6.0"
},
"pre-commit": [
"flow",
"lint",
"cover"
],
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"src/config.js",
"types/**/*"
],
"extension": [
".js"
],
"lines": 75,
"functions": 75,
"statements": 75,
"check-coverage": true,
"report-dir": "./tests/coverage",
"require": [
"babel-core"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"json",
"html",
"text",
"text-summary"
],
"all": true
}
}