forked from taskforcesh/bullmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.61 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
{
"name": "bullmq",
"version": "1.8.13",
"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",
"scripts": {
"docs": "typedoc --out docs src",
"build": "tsc && yarn copylua",
"copylua": "copyfiles -f ./src/commands/*.lua ./dist/commands",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"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",
"coverage": "nyc --reporter=text npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"precommit": "yarn lint",
"semantic-release": "semantic-release",
"prettier": "prettier --config package.json src/**/*.ts",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"prepublish": "yarn build"
},
"dependencies": {
"@types/ioredis": "^4.0.13",
"cron-parser": "^2.7.3",
"get-port": "^5.0.0",
"ioredis": "^4.3.0",
"lodash": "^4.17.11",
"semver": "^6.3.0",
"tslib": "^1.10.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.5.4",
"@semantic-release/npm": "^5.2.0",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/chai": "^4.1.7",
"@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.2.0",
"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",
"p-reflect": "^2.1.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.2",
"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",
"typedoc": "^0.15.0",
"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/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"yarn.lock",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
}
}