forked from taskforcesh/bullmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 4.1 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "bullmq",
"version": "1.21.0",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"author": "Taskforce.sh Inc.",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dry-run": "npm publish --dry-run",
"build": "tsc && yarn copylua",
"copylua": "copyfiles -f ./src/commands/*.lua ./dist/commands",
"coverage": "nyc --reporter=text npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "(api-extractor run || true) && api-documenter markdown -i ./temp -o docs/gitbook/api",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"precommit": "yarn lint",
"prepare": "yarn build",
"prettier": "prettier --config package.json src/**/*.ts",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"test": "yarn lint && tsc && ts-mocha --paths 'src/**/test_*.ts' --exit",
"test:watch": "yarn lint && ts-mocha --paths 'src/**/test_*.ts' -w --watch-extensions ts"
},
"dependencies": {
"@types/ioredis": "^4.22.2",
"cron-parser": "^2.7.3",
"get-port": "^5.0.0",
"ioredis": "^4.25.0",
"lodash": "^4.17.11",
"semver": "^6.3.0",
"tslib": "^1.10.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@microsoft/api-documenter": "^7.12.1",
"@microsoft/api-extractor": "^7.12.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/node": "^12.6.8",
"@types/semver": "^6.0.1",
"@types/sinon": "^7.0.13",
"@types/uuid": "^3.4.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"copyfiles": "^2.1.1",
"coveralls": "^3.0.7",
"husky": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"semantic-release": "^17.3.1",
"sinon": "^7.2.2",
"ts-mocha": "^6.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/taskforcesh/bullmq.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/gitbook/CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "yarn docs"
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"yarn.lock",
"docs/gitbook/CHANGELOG.md",
"docs/gitbook/api/**"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}