-
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.48 KB
/
package.json
File metadata and controls
62 lines (62 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
{
"name": "@flancer32/github-flows-app",
"version": "0.1.0",
"description": "Application host for event-driven workflows based on GitHub repository activity.",
"license": "Apache-2.0",
"type": "module",
"packageManager": "npm@10",
"engines": {
"node": ">=20"
},
"keywords": [
"github",
"workflow",
"event-driven",
"agent",
"teqfw",
"nodejs",
"application"
],
"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/flancer32/github-flows-app.git"
},
"homepage": "https://github.com/flancer32/github-flows-app",
"bugs": {
"url": "https://github.com/flancer32/github-flows-app/issues"
},
"teqfw": {
"namespaces": [
{
"prefix": "Github_Flows_App_",
"path": "./src",
"ext": ".mjs"
}
]
},
"types": "types.d.ts",
"dependencies": {
"@teqfw/github-flows": "^0.1.0"
},
"devDependencies": {
"@types/node": "*"
},
"scripts": {
"start": "node ./bin/cli.mjs",
"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"
}
}