-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"name": "rabbitmq-event-manager",
"description": "A nodeJS Event Manager to emit, and listen event through RabbitMQ",
"author": {
"email": "[email protected]",
"name": "Rémi Goyard",
"url": "https://www.mimiz.fr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimiz/rabbitmq-event-manager.git"
},
"version": "1.2.0",
"main": "build/index.js",
"types": "build/index.d.js",
"license": "MIT",
"keywords": [
"Event",
"amqp",
"RabbitMQ",
"event-manager",
"event emitter"
],
"scripts": {
"setup": "yarn",
"build": "tsc",
"test": "cross-env NODE_ENV=test mocha --exit --timeout 30000 --recursive \"./test/**/*.test.ts\"",
"coverage": "cross-env NODE_ENV=test RABBITMQ_EVENT_MANAGER_TRANSPORT_MODE=mute nyc --all mocha --timeout 180000 --exit --recursive \"./test/**/*.test.ts\"",
"prebuild": "rimraf build",
"lint": "yarn run lint:format && yarn run lint:quality",
"lint:fix": "yarn run lint:format:fix && yarn run lint:quality:fix",
"lint:format": "yarn run precommit:format \"./**/*.ts\"",
"lint:quality": "yarn run precommit:quality src/**/*.ts test/**/*.ts",
"lint:format:fix": "yarn run lint:format --write",
"lint:quality:fix": "yarn run lint:quality --fix",
"precommit:format": "prettier --check \"./{src,test}/**/*.ts\"",
"precommit:quality": "tslint src/**/*.ts test/**/*.ts",
"demo:cloudamqp": "ts-node demo/cloudamqp/run.ts",
"demo:docker": "ts-node demo/docker/run.ts"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^11.13.0",
"@types/sinon": "^9.0.0",
"@types/uuid": "^7.0.3",
"axios": "^0.19.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.14"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit:format && yarn precommit:quality",
"pre-push": "yarn test"
}
},
"dependencies": {
"amqplib": "^0.5.5",
"uuid": "^8.0.0",
"winston": "^3.2.1"
}
}