forked from nestjs/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.38 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
78
79
80
81
82
83
84
85
{
"name": "@nestjs/bull",
"version": "0.0.1",
"description": "Nest - modern, fast, powerful node.js web framework (@bull)",
"homepage": "https://github.com/nestjs/bull",
"bugs": {
"url": "https://github.com/nestjs/bull/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs/bull.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write **/*.{ts,json}",
"lint": "tslint -c tslint.json **/*.ts",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"sample-app": "ts-node --require tsconfig-paths/register --project sample/tsconfig.json sample/main.ts",
"test": "jest --detectOpenHandles --forceExit --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --forceExit --coverage --runInBand"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"tslint -c tslint.json",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@nestjs/common": "6.11.4",
"@nestjs/core": "6.11.4",
"@nestjs/platform-express": "6.11.4",
"@nestjs/testing": "6.11.4",
"@types/bull": "3.12.0",
"@types/jest": "25.1.1",
"@types/node": "12.12.17",
"@types/reflect-metadata": "0.1.0",
"bull": "3.12.1",
"husky": "4.2.1",
"jest": "25.1.0",
"lint-staged": "10.0.5",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.1",
"rxjs": "6.5.4",
"sort-package-json": "1.39.1",
"ts-jest": "25.1.0",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.1",
"typescript": "3.7.5"
},
"peerDependencies": {
"@nestjs/common": "^6.10.11",
"@nestjs/core": "^6.10.11",
"bull": "^3.3"
},
"contributors": [
"Frederic Woelffel <hello@fwoelffel.me>",
"Kamil Mysliwiec <mail@kamilmysliwiec.com>"
]
}