UNPKG

reactjs_creacion_de_librerias_ui

Version:
63 lines (62 loc) 2.01 kB
{ "name": "reactjs_creacion_de_librerias_ui", "version": "0.1.0", "description": "Libreria de componentes de UI para ReactJS", "main": "./dist/index.js", "scripts": { "test": "jest --config ./config/jest.config.js", "release": "npm run build && npm publish", "release:patch": "npm version patch && npm run release", "release:minor": "npm version minor && npm run publish", "release:major": "npm version major && npm run publish", "build":"SET NODE_ENV=production && (if EXIST dist (rmdir /s /q dist)) && mkdir dist && npx babel --config-file ./babel.config.js src/ --out-dir dist --copy-files --ignore src/**/*.spec.js --no-copy-ignored" }, "repository": { "type": "git", "url": "git+https://github.com/IvanGonzalezR/reactJS_mi_propia__libreria_ui.git" }, "keywords": [ "Libreria", "libreria-ui", "platzi", "UI", "ReactJS", "Componentes", "libreria-ui" ], "author": "IvanGonzalezR", "license": "ISC", "dependencies": { "@emotion/css": "^11.10.5" }, "publishConfig": { "access": "public" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@babel/eslint-parser": "^7.17.0", "@babel/plugin-transform-runtime": "^7.17.0", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", "@testing-library/dom": "^8.11.3", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "babel-loader": "^8.2.3", "babel-preset-minify": "^0.5.1", "eslint": "^8.11.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-react": "^7.29.4", "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "prettier": "^2.5.1", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0" } }