This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 2.26 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
{
"name": "queue-ts",
"version": "0.1.1",
"description": "A promise based worker queue with limited concurrency",
"main": "dist/src/index.js",
"files": [
"dist",
"index.d.ts",
"src"
],
"scripts": {
"linter": "tslint --project ./tsconfig.json",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "tsc --sourceMap",
"pretest": "yarn build",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"preversion": "yarn test",
"version": "yarn build && conventional-changelog -p angular -v -r 0 > CHANGELOG.md && git add -A .",
"postversion": "git push && git push --tags",
"prepublish": "not-in-install && yarn build || echo 'In install cycle, skipping prepublish'",
"precoverage": "yarn clean && tsc --inlineSourceMap",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "KnisterPeter/queue-ts"
},
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@knisterpeter/standard-tslint": "1.7.2",
"@types/jest": "28.1.8",
"codecov": "3.8.3",
"conventional-changelog-cli": "2.2.2",
"cz-conventional-changelog": "3.3.0",
"in-publish": "2.0.1",
"jest": "28.1.3",
"rimraf": "3.0.2",
"source-map-support": "0.5.21",
"ts-jest": "28.0.8",
"tslint": "6.1.3",
"typescript": "4.9.5"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"node_modules",
"coverage",
"dist/test"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"renovate": {
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}