-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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": "notifme-sdk-queue-rabbitmq",
"version": "4.0.0",
"description": "RabbitMQ plugin for Notif.me SDK",
"main": "lib/index.js",
"repository": "https://github.com/notifme/notifme-sdk-queue-rabbitmq",
"author": "Notif.me",
"license": "MIT",
"scripts": {
"build": "yarn run clean && babel src --out-dir lib && yarn run build-dot-flow",
"build-dot-flow": "find ./src -name '*.js' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"clean": "rm -rf lib/",
"dev": "nodemon -e js -r babel-register example/index.js",
"lint": "yarn run flow && standard",
"run-consumer": "babel-node example/worker.js",
"run-producer": "babel-node example/application.js",
"run-rabbitmq": "docker run -it --rm -p 5672:5672 rabbitmq:alpine",
"prepublish": "yarn run build",
"test": "yarn run lint"
},
"dependencies": {
"amqplib": "^0.5.1",
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"flow-bin": "^0.53.0",
"nodemon": "^1.11.0",
"notifme-sdk": "^0.2.1",
"standard": "^10.0.3"
},
"files": [
"lib"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/lib/**"
]
}
}