{
  "name": "aphrodite",
  "version": "1.2.5",
  "description": "Inline styles in JS that just work (TM)",
  "keywords": [
    "css",
    "react",
    "inline-styles"
  ],
  "main": "lib/index.js",
  "scripts": {
    "lint": "eslint --fix --cache . && flow check",
    "test": "npm run coverage",
    "posttest": "npm run lint",
    "coverage": "nyc --check-coverage --lines 100 --branches 100 npm run tests",
    "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
    "pretest": "npm run build:prefixes",
    "tests": "mocha --compilers js:babel/register tests",
    "tests:watch": "mocha --watch --compilers js:babel/register tests",
    "prebuild": "rimraf dist/* lib/*",
    "build": "npm-run-all --parallel build:*",
    "watch:build": "npm-run-all --parallel watch:build:*",
    "build:prefixes": "tools/generate_prefixer_data.js",
    "build:main": "babel -d lib/ src",
    "watch:build:main": "npm run build:main -- --watch",
    "build:umd": "webpack --output-library-target umd --output-library aphrodite --output-filename aphrodite.umd.js --devtool source-map",
    "watch:build:umd": "npm run build:umd -- --watch",
    "build:umdmin": "webpack --output-library-target umd --output-library aphrodite --output-filename aphrodite.umd.min.js -p --devtool source-map",
    "watch:build:umdmin": "npm run build:umdmin -- --watch",
    "build:commonjs": "webpack --output-library-target commonjs2 --output-filename aphrodite.js",
    "watch:build:commonjs": "npm run build:commonjs -- --watch",
    "preversion": "npm test",
    "version": "npm run build && git add dist"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Khan/aphrodite.git"
  },
  "author": "Jamie Wong",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Khan/aphrodite/issues"
  },
  "homepage": "https://github.com/Khan/aphrodite",
  "devDependencies": {
    "babel": "^5.8.23",
    "babel-core": "^5.8.25",
    "babel-loader": "^5.3.2",
    "caniuse-api": "^2.0.0",
    "chai": "^3.3.0",
    "coveralls": "^2.12.0",
    "eslint": "^3.7.1",
    "eslint-config-standard-react": "^4.2.0",
    "eslint-plugin-react": "^6.3.0",
    "flow-bin": "^0.34.0",
    "jsdom": "^6.5.1",
    "mkdirp": "^0.5.1",
    "mocha": "^2.3.3",
    "npm-run-all": "^1.7.0",
    "nyc": "^6.4.4",
    "rimraf": "^2.5.2",
    "webpack": "^1.12.2"
  },
  "dependencies": {
    "asap": "^2.0.3",
    "inline-style-prefixer": "^3.0.1",
    "string-hash": "^1.1.3"
  },
  "tonicExampleFilename": "examples/runkit.js",
  "nyc": {
    "exclude": [
      "**/node_modules/**",
      "coverage",
      "tests"
    ]
  }
}
