-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.48 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
67
68
{
"name": "@teqfw/github-flows",
"version": "0.7.0",
"description": "Event-driven workflows for repository-based agent execution.",
"license": "Apache-2.0",
"type": "module",
"types": "types.d.ts",
"engines": {
"node": ">= 20"
},
"author": [
{
"name": "Alex Gusev",
"email": "alex@flancer64.com",
"url": "https://github.com/flancer64"
},
{
"name": "Victor Gusev",
"email": "viktor@nmmlm.com",
"url": "https://github.com/viktor-gusev"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/viktor-gusev/github-flows.git"
},
"homepage": "https://github.com/viktor-gusev/github-flows",
"bugs": {
"url": "https://github.com/viktor-gusev/github-flows/issues"
},
"keywords": [
"github",
"workflow",
"event-driven",
"agent",
"teqfw",
"nodejs"
],
"files": [
"ai/",
"CHANGELOG.md",
"docs/",
"LICENSE",
"README.md",
"src/",
"types.d.ts"
],
"teqfw": {
"namespaces": [
{
"prefix": "Github_Flows_",
"path": "./src",
"ext": ".mjs"
}
]
},
"dependencies": {
"@flancer32/teq-web": "^0.10.0"
},
"devDependencies": {
"@types/node": "*"
},
"scripts": {
"test:unit": "find test/unit -name '*.test.mjs' -print0 | xargs -0 node --test",
"test:integration": "find test/integration -name '*.test.mjs' -print0 | xargs -0 node --test",
"test": "npm run test:unit && npm run test:integration"
}
}