advanced-react-cli
Version:
NPM package which aims to provide a better way to install packages for your react application through an intuitive CLI
77 lines (76 loc) • 2.12 kB
JSON
{
"name": "advanced-react-cli",
"version": "1.4.2",
"description": "NPM package which aims to provide a better way to install packages for your react application through an intuitive CLI",
"main": "cli.js",
"scripts": {
"react-cli": "node cli.js",
"format": "prettier-standard '**/*.{js,jsx}'",
"build": "babel . -d lib",
"docs": "docsify serve docs",
"copy": "node ./scripts/copy.js",
"test": "jest",
"test:coverage": "jest --coverage",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"bin": {
"arc": "cli.js"
},
"keywords": [
"react-cli",
"react cli",
"reactcli",
"cli-react",
"cli react",
"cli",
"advanced react cli",
"advanced-react-cli"
],
"author": "Dev Isle",
"license": "GNU GPLv3",
"dependencies": {
"@babel/runtime": "^7.8.7",
"axios": ">=0.21.1",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"cli-progress": "^3.6.0",
"clui": "^0.3.6",
"figlet": "^1.3.0",
"inquirer": "^6.4.1",
"ora": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devisle/advanced-react-cli.git"
},
"bugs": {
"url": "https://github.com/devisle/advanced-react-cli/issues"
},
"homepage": "https://advanced-react-cli.netlify.com/",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-jest": "^24.9.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier-standard": "^9.1.1"
}
}