{
  "name": "soya-form",
  "version": "0.1.0",
  "description": "React form library for soya",
  "main": "lib/index.js",
  "license": "MIT",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "babel src -d lib",
    "clean": "rimraf lib",
    "coverage": "jest --coverage",
    "coveralls": "yarn run coverage && cat ./coverage/lcov.info | coveralls",
    "lint": "marlint",
    "lint:fix": "yarn lint --fix",
    "precommit": "lint-staged",
    "prepublish": "yarn run clean && yarn run build",
    "test": "jest",
    "watch": "yarn run build -- -w"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/traveloka/soya-form.git"
  },
  "keywords": [
    "react",
    "soya",
    "form",
    "redux"
  ],
  "dependencies": {
    "hoist-non-react-statics": "^3.3.2",
    "lodash": "^4.17.21",
    "prop-types": "^15.5.10",
    "react-is": "^18.3.1",
    "redux-devtools-extension": "^2.13.9",
    "redux-thunk": "^2.3.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.19.3",
    "@babel/core": "^7.24.4",
    "@babel/plugin-transform-runtime": "7.24.3",
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-react": "^7.18.6",
    "@jest/globals": "^29.7.0",
    "@testing-library/dom": "^10.0.0",
    "@testing-library/react": "^16.0.0",
    "coveralls": "^3.0.0",
    "husky": "^0.14.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "lint-staged": "^7.1.3",
    "marlint": "^6.2.1",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "react-redux": "^9.1.0",
    "react-text-mask": "^5.4.3",
    "redux": "^4.2.0",
    "rimraf": "^2.6.1"
  },
  "resolutions": {
    "@babel/traverse": "^7.27.1",
    "form-data": "^4.0.0"
  },
  "peerDependencies": {
    "react": "^17.0.2 || ^18.0.0 || ^19.0.0",
    "react-redux": "^8.0.5 || ^9.0.0",
    "redux": "^4.2.0"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "setupFiles": ["./test/setup.js"]
  },
  "lint-staged": {
    "*.js": [
      "yarn lint:fix",
      "git add"
    ]
  },
  "marlint": {
    "envs": [
      "browser",
      "es6",
      "jest",
      "node"
    ],
    "ignores": [
      "**/coverage/**",
      "**/lib/**",
      "**/node_modules/**"
    ]
  }
}
