@armandoroman1016/react-multi-step-form
Version:
React Multi Step is a NPM package for easily building multi-step-forms with React. This package will provide you the Components and utilities to quickly build a multi-step-form.
102 lines (101 loc) • 2.61 kB
JSON
{
"name": "@armandoroman1016/react-multi-step-form",
"version": "1.0.1",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/armandoroman1016/react-multi-step.git"
},
"dependencies": {
"styled-components": "^5.2.1"
},
"files": [
"dist"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"keywords": [
"react",
"typescript",
"npm"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest --notify --watch --config=./jest.config.js",
"test:no-watch": "jest --config=./jest.config.js --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint \"./src/**/*.{js,ts,tsx}\" --quiet --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"eslintIgnore": [
"dist/"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/react": "^16.14.2",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"babel-runtime": "^6.26.0",
"csstype": "^3.0.5",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^2.34.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:no-watch",
"pre-push": "npm run test:no-watch"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint"
]
},
"resolutions": {
"styled-components": "^5"
}
}