-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "nestjs-amqp",
"description": "AMQP connection service for nestjs",
"keywords": [
"nestjs",
"amqp"
],
"main": "dist/index.js",
"version": "0.2.2",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^6.4.1",
"@nestjs/core": "^6.4.1",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@types/amqplib": "^0.5.13",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^27.0.2",
"@types/node": "^15.12.4",
"coveralls": "^3.0.2",
"dotenv": "^10.0.0",
"jest": "^24.9.0",
"nestjs-config": "^1.2.3",
"prettier": "^2.4.1",
"ts-jest": "^24.0.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@nestjs/common": "^5.1.0 || ^6.0.3",
"@types/amqplib": "^0.5.13"
},
"dependencies": {
"amqplib": "^0.7.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.1"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test": "jest",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs-community/nestjs-amqp.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"setupFiles": [
"<rootDir>/__tests__/setup.js"
]
}
}