-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·88 lines (88 loc) · 2.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "pilot-agent-cli",
"version": "1.2.1-beta.0",
"description": "GitHub Copilot automation tool with configuration-driven file management",
"main": "copilot-client.js",
"bin": {
"pilot-agent-cli": "bin/pilot-agent-cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:ci": "jest --ci --coverage --watchAll=false",
"start": "node copilot-client.js",
"agent:init": "node pilot-agent-cli.js init",
"agent:run": "node pilot-agent-cli.js run",
"agent:config": "node pilot-agent-cli.js config",
"agent:test": "node pilot-agent-cli.js test",
"install:global": "npm install -g ."
},
"dependencies": {
"simple-git": "^3.19.1"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js",
"!src/**/index.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
},
"keywords": [
"github-copilot",
"automation",
"cli",
"code-generation",
"hexagonal-architecture",
"clean-code"
],
"author": "Benoit ROLLAND",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/benoitrolland/pilot-agent-cli.git"
},
"bugs": {
"url": "https://github.com/benoitrolland/pilot-agent-cli/issues"
},
"homepage": "https://github.com/benoitrolland/pilot-agent-cli#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/",
"src/",
"copilot-*.js",
"pilot-agent-cli.js",
"pilot-agent.config.json",
"usage*.adoc",
"info/",
"license.txt"
]
}