-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "rabbithole-js",
"access": "public",
"version": "1.0.1",
"description": "Opinionated, RabbitMQ-based microservices framework.",
"main": "lib/index.js",
"scripts": {
"service": "nodemon src/examples/service.js --exec babel-node",
"client": "nodemon src/examples/client.js --exec babel-node",
"test": "jest --coverage --forceExit --runInBand",
"build": "babel src -d lib",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinders/rabbithole.node.git"
},
"author": "Erik Pinders",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinders/rabbithole.node/issues"
},
"homepage": "https://github.com/pinders/rabbithole.node#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.13.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"flow-bin": "^0.64.0",
"jest": "^22.1.1",
"jest-cli": "^22.1.1",
"nodemon": "^1.10.0"
},
"dependencies": {
"amqplib": "^0.5.2",
"amqplib-flow": "^1.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
}