-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "ht-sqs-transport",
"version": "2.0.0",
"description": "An Amazon SQS Hudson Taylor transport",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib && babel test-src -d test",
"test": "npm run build && mocha -R spec --bail --check-leaks test/",
"prepublish": "npm run build",
"coverage": "npm run build && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd --recursive -R spec -t 5000",
"push-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hudson-taylor/ht-sqs-transport.git"
},
"keywords": [
"ht",
"hudson-taylor",
"sqs",
"ht-transport"
],
"author": "Adam Brady <adam@boxxen.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hudson-taylor/ht-sqs-transport/issues"
},
"homepage": "https://github.com/hudson-taylor/ht-sqs-transport",
"devDependencies": {
"async": "^0.9.0",
"aws-sdk-mock": "^1.6.1",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"coveralls": "^2.11.2",
"ht-schema": "0.0.11",
"hudson-taylor": "^2.4.1",
"istanbul": "^0.3.7",
"mocha": "^2.2.0",
"proxyquire": "^1.7.10"
},
"dependencies": {
"aws-sdk": "^2.6.12",
"sqs-consumer": "^3.3.0",
"uid2": "0.0.3"
}
}