-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.62 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": "nest-queue",
"version": "1.0.3",
"description": "Queue manager for NestJS Framework for Redis (via bull package)",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"keywords": [
"nestjs",
"typescript",
"queue",
"redis"
],
"repository": {
"type": "git",
"url": "https://github.com/owl1n/nest-queue"
},
"author": {
"name": "Markin Maxim",
"email": "mxrkin@yandex.ru"
},
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^6.1.1",
"@nestjs/core": "^6.1.1",
"bull": "^3.7.0",
"rxjs": "^6.2.2"
},
"devDependencies": {
"@nestjs/common": "^6.1.1",
"@nestjs/core": "^6.1.1",
"@types/bull": "3.5.11",
"@types/jest": "24.0.11",
"@types/node": "11.13.5",
"bull": "3.7.0",
"coveralls": "3.0.3",
"jest": "24.7.1",
"prettier": "1.17.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.4.0",
"ts-jest": "24.0.2",
"typescript": "3.4.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
}
}