-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
{
"name": "seneca-amqp-transport",
"version": "2.2.0",
"codename": "Migrative Meathook",
"description": "Official AMQP transport plugin for Seneca",
"main": "index.js",
"files": [
"index.js",
"lib/*",
"defaults.json"
],
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"coverage": "nyc --cache npm test",
"test": "npm-run-all test:unit test:e2e",
"test:unit": "NODE_ENV=test mocha --reporter spec --bail test/**/*.test.js",
"test:e2e": "NODE_ENV=test mocha --reporter spec --bail e2e/**/*.e2e.js",
"lint": "eslint index.js lib test",
"validate": "npm-run-all lint test:unit",
"integrate": "npm-run-all lint coverage",
"release": "./scripts/release.sh",
"prettier": "prettier --write index.js lib/**/*.js examples/**/*.js e2e/**/*.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:senecajs/seneca-amqp-transport.git"
},
"keywords": [
"seneca",
"official",
"plugin",
"amqp",
"transport",
"rabbitmq",
"zmq",
"activemq",
"microservice",
"rpc"
],
"author": "Nicolás Fantone <[email protected]> (https://github.com/nfantone)",
"contributors": [
"George Haidar <[email protected]> (https://github.com/disintegrator)",
"Chris Spiliotopoulos <[email protected]> (https://github.com/chefArchitect)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/senecajs/seneca-amqp-transport/issues"
},
"homepage": "https://github.com/senecajs/seneca-amqp-transport",
"dependencies": {
"amqplib": "^0.5.2",
"amqpuri": "^2.0.1",
"bluebird": "^3.5.1",
"jsonic": "^0.3.0",
"lodash": "^4.17.10",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-json-schema": "^1.5.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.2",
"nyc": "^12.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"seneca": "^3.4.3",
"sinon": "^6.0.0",
"sinon-chai": "^3.0.0"
},
"pre-commit": [
"validate"
]
}