Files
caprover/app-cli/package.json
T
2019-01-02 23:33:07 -08:00

64 lines
1.5 KiB
JSON

{
"name": "captainduckduck",
"version": "1.1.0",
"description": "CLI tool for CaptainDuckDuck. See CaptainDuckDuck.com for more details.",
"main": "captainduckduck.js",
"scripts": {
"test": "jest",
"build": "npx tsc"
},
"bin": {
"captainduckduck": "./built/commands/captainduckduck.js",
"captainduckduck-deploy": "./built/commands/deploy.js",
"captainduckduck-list": "./built/commands/list.js",
"captainduckduck-login": "./built/commands/login.js",
"captainduckduck-logout": "./built/commands/logout.js",
"captainduckduck-serversetup": "./built/commands/serversetup.js"
},
"repository": {
"type": "git",
"url": "gitrepo"
},
"keywords": [
"Docker",
"Automated",
"Deployment",
"Heroku",
"Free",
"NodeJS",
"PHP",
"Nginx",
"Server",
"Container"
],
"author": "Kasra Bigdeli",
"license": "Apache-2.0",
"lint-staged": {
"./**/*.{js}": [
"co-eslint",
"co-prettier --write",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.1",
"command-exists": "^1.2.8",
"commander": "^2.19.0",
"configstore": "^4.0.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"ora": "^3.0.0",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"typescript": "^3.2.2",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"@types/node": "^10.12.18",
"eslint": "^5.11.1",
"eslint-plugin-jest": "^21.27.2",
"jest": "^23.6.0",
"prettier": "^1.15.3"
}
}