-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 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
{
"name": "@grunnverk/tree-execution",
"version": "1.5.9-dev.0",
"description": "Parallel execution framework and tree orchestration for monorepo workflows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' --ignore-pattern 'src/util/logger.ts'",
"clean": "rm -rf dist coverage",
"precommit": "npm run lint && npm run build && npm run test",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"parallel-execution",
"task-pool",
"dependency-graph",
"tree-command",
"monorepo",
"recovery",
"checkpoint"
],
"author": "Tim O'Brien <tobrien@discursive.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grunnverk/tree-execution.git"
},
"bugs": {
"url": "https://github.com/grunnverk/tree-execution/issues"
},
"homepage": "https://github.com/grunnverk/tree-execution#readme",
"dependencies": {
"@grunnverk/tree-core": "^1.5.6",
"@grunnverk/git-tools": "^1.5.23",
"@grunnverk/shared": "^1.5.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist",
"guide",
"README.md",
"LICENSE"
]
}