{
  "name": "react-outline",
  "version": "2.1.5",
  "description": "react styling framework to keep your makeup clean",
  "main": "./dist/reactOutline.js",
  "types": "./index.d.ts",
  "files": [
    "dist",
    "index.d.ts"
  ],
  "scripts": {
    "build:dist": "npx esbuild source/main.js --bundle --minify --sourcemap --outfile=dist/reactOutline.js --format=cjs --platform=node --loader:.js=jsx --external:react --external:react-dom",
    "pretest": "npm run build:dist",
    "test": "jest --no-cache",
    "test:go": "npm test -- --watch --coverage",
    "test:update": "npm test -- --updateSnapshot",
    "test:cover": "jest --no-cache --config jest.coverage.config.js --coverage",
    "test:watch": "npm run build:dist && jest --no-cache --watch --runInBand",
    "release": "bash scripts/_publish.sh"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/codemeasandwich/react-outline.git"
  },
  "keywords": [
    "react",
    "css",
    "css-in-js",
    "react styling",
    "styled-components",
    "prefixer",
    "inline styles",
    "autoprefixer",
    "vendor prefix"
  ],
  "author": "Brian Shannon (http://www.codemeasandwich.com)",
  "license": "Apache-2.0 ",
  "bugs": {
    "url": "https://github.com/codemeasandwich/react-outline/issues"
  },
  "homepage": "https://github.com/codemeasandwich/react-outline#readme",
  "dependencies": {
    "add-px-to-style": "^1.0.0",
    "hyphenate-style-name": "^1.1.0",
    "inline-style-prefixer": "^7.0.1"
  },
  "peerDependencies": {
    "react": ">=16.0.0 <20.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.23.0",
    "@babel/core": "^7.23.0",
    "@babel/plugin-proposal-decorators": "^7.23.0",
    "@babel/preset-env": "^7.23.0",
    "@babel/preset-react": "^7.23.0",
    "@faker-js/faker": "^8.3.0",
    "@testing-library/jest-dom": "^6.1.0",
    "@testing-library/react": "^14.1.0",
    "esbuild": "^0.27.2",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "raw-loader": "^4.0.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-test-renderer": "^18.2.0"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "moduleNameMapper": {
      "\\.(css|jpg|png)$": "<rootDir>/empty-module.js",
      "^raw-loader": "<rootDir>/empty-module.js",
      "react-outline": "<rootDir>/dist/reactOutline.js",
      "^react-addons-css-transition-group$": "<rootDir>/empty-module.js"
    },
    "testPathIgnorePatterns": [
      "/node_modules/",
      "example.test.js"
    ],
    "coverageDirectory": "coverage",
    "collectCoverageFrom": [
      "source/**/*.js",
      "!source/utils/index.js"
    ],
    "verbose": true,
    "setupFilesAfterEnv": [
      "<rootDir>/jest.setup.js"
    ]
  }
}
