start-at-root/react-breeze-form

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "react-breeze-form",
  "version": "0.0.0-development",
  "description": "Quickly render bootstrap styled react hook forms using a schema file.",
  "main": "dist/index.jsx",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build:css": "node-sass --importer node_modules/node-sass-magic-importer/dist/cli.js --include-path scss src/main.scss dist/react-breeze-form.css",
    "build:min": "rollup -c rollup.min.config.js",
    "build:tsc": "tsc -p ./tsconfig.json --sourcemap",
    "build:watch": "rollup -c -w",
    "build": "rollup -c",
    "bundlesize": "npm run build:min && bundlesize",
    "clean": "rimraf dist/*",
    "commit": "git-cz",
    "format": "prettier --write \"**/*.+(ts|tsx|md|yml|json)\"",
    "lint": "eslint ./src --ext .jsx,.ts --ignore-pattern *.test.ts",
    "postrelease": "npm publish && git push --follow-tags",
    "prepublishOnly": "npm run format && npm run lint && npm test && npm run clean npm run build:css && npm run build",
    "semantic-release": "semantic-release",
    "test:update": "npm test -- --updateSnapshot --coverage",
    "test": "NODE_ENV=test jest --config=jest.config.js  --coverage --forceExit --detectOpenHandles"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/start-at-root/react-breeze-form.git"
  },
  "keywords": [
    "react",
    "forms",
    "schema",
    "file",
    "bootstrap",
    "react-hook-form",
    "quick",
    "config"
  ],
  "author": "J Lison <j@lison.us>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/start-at-root/react-breeze-form/issues"
  },
  "homepage": "https://github.com/start-at-root/react-breeze-form#readme",
  "peerDependencies": {
    "compass-mixins": ">=0.12.10",
    "react-dom": ">=16.13.0",
    "react-hook-form": "=>5.1.0",
    "react-i18next": "=>11.3.0",
    "react-select": ">=3.0.8",
    "react": ">=16.13.0",
    "reactstrap": ">=8.4.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{tsx,ts}": [
      "eslint --fix",
      "prettier --config ./.prettierrc --write"
    ]
  },
  "devDependencies": {
    "@semantic-release/changelog": "^5.0.0",
    "@semantic-release/commit-analyzer": "^8.0.1",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/npm": "^7.0.5",
    "@semantic-release/release-notes-generator": "^9.0.1",
    "@testing-library/react": "^10.0.1",
    "@types/jest": "^25.1.4",
    "@types/react": "^16.9.23",
    "@types/react-i18next": "^8.1.0",
    "@types/react-select": "^3.0.11",
    "@types/reactstrap": "^8.4.2",
    "@typescript-eslint/eslint-plugin": "^2.24.0",
    "@typescript-eslint/parser": "^2.24.0",
    "all-contributors-cli": "^6.14.0",
    "bundlesize": "^0.18.0",
    "commitizen": "^4.0.3",
    "compass-mixins": "^0.12.10",
    "cz-conventional-changelog": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^2.5.0",
    "husky": "^4.2.3",
    "jest": "^25.1.0",
    "lint-staged": "^10.0.8",
    "node-sass": "^4.13.1",
    "node-sass-magic-importer": "^5.3.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.19.1",
    "react": "^16.13.0",
    "react-dom": "^16.13.0",
    "react-hook-form": "^5.1.1",
    "react-i18next": "^11.3.3",
    "react-select": "^3.0.8",
    "reactstrap": "^8.4.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.1.0",
    "rollup-plugin-buble": "^0.19.8",
    "rollup-plugin-copy-glob": "^0.3.1",
    "rollup-plugin-terser": "^5.3.0",
    "rollup-plugin-typescript2": "^0.26.0",
    "semantic-release": "^17.0.4",
    "stylelint": "^13.2.1",
    "stylelint-config-standard": "^20.0.0",
    "stylelint-order": "^4.0.0",
    "stylelint-scss": "^3.15.0",
    "ts-jest": "^25.2.1",
    "typescript": "^3.8.3"
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      [
        "@semantic-release/changelog",
        {
          "changelogFile": "CHANGELOG.md"
        }
      ],
      "@semantic-release/git",
      "@semantic-release/npm"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "dependencies": {}
}