pilot-agent-cli
Version:
GitHub Copilot automation tool with configuration-driven file management
90 lines (89 loc) • 2.22 kB
JSON
{
"name": "pilot-agent-cli",
"version": "1.2.7-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",
"standalone-copilot-detector.js",
"usage*.adoc",
"info/",
"license.txt"
]
}