-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "sqs-quooler",
"version": "1.9.1",
"description": "An abstraction of AWS SQS",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pagarme/sqs-quooler.git"
},
"bugs": {
"url": "https://github.com/pagarme/sqs-quooler/issues"
},
"homepage": "https://github.com/pagarme/sqs-quooler#readme",
"author": "Pagar.me Pagamentos S/A <@pagarme>",
"keywords": [
"sqs",
"queue",
"aws"
],
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill --recursive test/**/*-spec.js"
},
"dependencies": {
"aws-sdk": "2.814.0",
"bluebird": "3.4.6",
"idempotent-babel-polyfill": "6.26.0-2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"chai": "3.5.0",
"chai-subset": "1.3.0",
"eslint": "5.1.0",
"eslint-config-pagarme-base": "2.0.0",
"eslint-plugin-import": "2.13.0",
"mocha": "5.2.0"
}
}