This repository was archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 KB
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
{
"name": "ts-fork-queue",
"version": "0.1.34",
"description": "A simple fork queue. Schedules enqueued tasks from a queue and runs them in a new process.",
"repository": "https://github.com/thornberger/fork-queue.git",
"author": "Tobias Hornberger <tobias.hornberger@falsemirror.de>",
"license": "MIT",
"keywords": [
"fork",
"queue",
"typescript",
"nodejs"
],
"files": [
"/dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "rollup -c",
"release": "yarn test && yarn build && yarn publish",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src"
],
"testRegex": "(/test/.*|(\\.|/)test)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"./src/*/**/*.ts": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}