growthbook
Version:
The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform
88 lines (87 loc) • 2.43 kB
JSON
{
"name": "growthbook",
"version": "0.2.4",
"description": "The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform",
"bin": {
"growthbook": "./bin/run"
},
"homepage": "https://github.com/growthbook/growthbook-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "growthbook/growthbook-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.3.2",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"handlebars": "^4.7.7",
"node-fetch": "2"
},
"devDependencies": {
"@oclif/test": "^2.3.7",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.12",
"@types/node-fetch": "^2.6.2",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"husky": "^8.0.3",
"mocha": "^9",
"oclif": "^3",
"plop": "^3.1.2",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "growthbook",
"dirname": "growthbook",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"auth": {
"description": ""
},
"features": {
"description": ""
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"cli": "yarn build && ./bin/run",
"lint": "eslint . --ext .ts --config .eslintrc",
"generate-api-client": "./scripts/generate_api_client.sh",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"docs": "echo 'Generating docs...'; npm run build; npx oclif readme; node scripts/remove-see-code-lines.js",
"prepack": "yarn build && oclif manifest && npm run docs",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:docs": "./scripts/test-docs.sh",
"version": "npm run docs && git add README.md",
"prepare": "husky install"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/growthbook/growthbook-cli/issues",
"keywords": [
"growthbook"
],
"types": "dist/index.d.ts"
}