-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "mqrpc",
"version": "1.5.0",
"description": "💫 Easy RPC over RabbitMQ",
"keywords": [
"💫",
"rpc",
"amqp",
"amqplib",
"RabbitMQ",
"MQ",
"asynchronous",
"remote",
"procedure",
"call"
],
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"repository": "https://github.com/getconversio/mqrpc",
"author": "João Ferreira",
"license": "MIT",
"private": false,
"engines": {
"node": ">= 7.0.0"
},
"dependencies": {
"amqplib": "^0.5.1",
"loglevel": "^1.5.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.4",
"@types/bluebird": "^3.5.14",
"@types/loglevel": "^1.5.1",
"@types/sinon": "^2.3.5",
"@types/uuid": "^3.4.2",
"ava": "^0.25.0",
"should": "^13.1.0",
"sinon": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^3.4.5"
},
"scripts": {
"build": "node_modules/.bin/tsc --declaration && yarn run lint && node_modules/.bin/ava",
"clean": "rm -r dist/ || mkdir dist",
"dev": "node_modules/.bin/tsc -w & node_modules/.bin/ava -w",
"lint": "node_modules/.bin/tslint -p .",
"test": "node_modules/.bin/tsc && node_modules/.bin/ava",
"prepublish": "yarn run clean && yarn run build"
},
"ava": {
"files": [
"dist/test/**/*.js"
]
}
}