react-component-blueprint
Version:
a command line tool to create, rename and delete typed react components and other helpers
55 lines (54 loc) • 1.76 kB
JSON
{
"name": "react-component-blueprint",
"version": "1.6.3",
"description": "a command line tool to create, rename and delete typed react components and other helpers",
"main": "index.js",
"scripts": {
"minor": "npm version minor && npm publish",
"format": "prettier --write .",
"patch": "npm version patch && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push --all --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix './component/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint --fix",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"keywords": [
"shel",
"npm",
"react",
"typescript",
"husky"
],
"author": "Fabrice Feugang Kemegni",
"license": "ISC",
"bin": {
"create-component": "bin/create.sh",
"delete-component": "bin/delete.sh",
"rename-component": "bin/rename.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabrigeas/react-component-blueprint.git"
},
"bugs": {
"url": "https://github.com/fabrigeas/react-component-blueprint/issues"
},
"homepage": "https://github.com/fabrigeas/react-component-blueprint#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"grunt": "^1.6.1",
"grunt-shell": "^4.0.0",
"prettier": "^2.8.5",
"typescript": "^5.0.2"
}
}