-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.76 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
63
64
65
66
{
"name": "@calmo/task-runner",
"version": "4.3.0",
"description": "A lightweight, type-safe, and domain-agnostic task orchestration engine. It resolves a Directed Acyclic Graph (DAG) of steps, executes independent tasks in parallel, and manages a shared context across the pipeline.",
"repository": {
"type": "git",
"url": "https://github.com/thalesraymond/task-runner.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "tsc --noEmit -p tsconfig.test.json && vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"mutate": "stryker run",
"all": "pnpm run build && pnpm run test && pnpm run lint",
"format": "prettier --write .",
"prepare": "husky",
"commit": "git add . &&git-cz"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"keywords": [
"task-runner",
"workflow",
"pipeline",
"orchestration",
"dag",
"typescript",
"parallel-execution",
"dependency-graph",
"async",
"type-safe"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.2",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
}
}