-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "@amaui/amqp",
"version": "1.1.19",
"description": "AMQP",
"repository": "https://github.com/amaui-org/amaui-amqp.git",
"author": "Lazar <lazareric.com@gmail.com>",
"license": "MIT",
"private": false,
"main": "./src/index.ts",
"keywords": [
"amqp",
"rabbitmq",
"backend",
"back-end",
"web",
"javascript",
"js",
"typescript",
"node",
"nodejs",
"library",
"amaui"
],
"scripts": {
"prebuild": "rimraf build",
"build": "node utils/js/build.js",
"release": "yarn build && yarn version --patch --no-git-tag-version && yarn build && cd ./build && npm publish",
"lint": "tslint -c tslint.json -p tsconfig.json",
"type": "tsc --noEmit -p tsconfig.json",
"cov": "cross-env NODE_ENV=test amaui-test",
"test": "yarn lint && yarn type && yarn build && yarn cov",
"docker": "docker-compose -p 'amaui' up -d"
},
"peerDependencies": {
"amqplib": "^0.10.3"
},
"dependencies": {
"@amaui/errors": "^1.0.111",
"@amaui/log": "^1.0.22",
"@amaui/subscription": "^1.0.5",
"@amaui/utils": "^1.1.18",
"@babel/runtime": "^7.18.3"
},
"devDependencies": {
"@amaui/models": "^1.0.11111",
"@amaui/test": "^1.0.11117",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/amqplib": "^0.8.2",
"@types/node": "^16.11.10",
"amqplib": "^0.10.3",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.22"
}
}