{
  "name": "stylord",
  "version": "2.3.1",
  "description": "Javascript styles made easy",
  "main": "dist/stylord.js",
  "module": "dist/stylord.es.js",
  "jsnext:main": "dist/stylord.es.js",
  "scripts": {
    "test": "npm run karma -- --no-auto-watch",
    "test:watch": "npm run karma -- --no-single-run",
    "karma": "karma start config/karma.config.js",
    "coveralls": "npm test && cat coverage/report-lcovonly.txt | coveralls",
    "lint": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma none --write \"lib/**/*.js\" --write \"test/**/*.js\" && xo lib/**/*.js test/**/*.js --fix",
    "precommit": "npm run lint && npm run test && npm run build && npm run docs",
    "prepush": "npm run precommit",
    "build": "rollup -c config/rollup.config.js",
    "build:watch": "npm run build -- -w",
    "gzip-size": "uglifyjs dist/stylord.js -cm | gzip-size",
    "watch": "run-p -r build:watch test:watch",
    "prepublish": "npm run precommit",
    "docs": "documentation documentation readme lib/stylord.js --section=API -q --shallow"
  },
  "keywords": [
    "css",
    "inline-styles",
    "css-in-js",
    "framework-agnostic"
  ],
  "author": "Gustavo P Borges",
  "license": "MIT",
  "devDependencies": {
    "babel-core": "^6.24.0",
    "babel-plugin-istanbul": "^4.0.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-preset-es2015": "^6.24.0",
    "babelify": "^7.3.0",
    "browserify": "^14.1.0",
    "coveralls": "^3.0.2",
    "documentation": "^4.0.0-beta.18",
    "gzip-size-cli": "^2.0.0",
    "husky": "^0.13.2",
    "karma": "^4.0.0",
    "karma-browserify": "^5.1.1",
    "karma-cli": "^1.0.1",
    "karma-coverage": "^1.1.1",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.2",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-sauce-launcher": "^1.1.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.0.2",
    "prettier": "^1.2.2",
    "rollup": "^0.41.6",
    "rollup-plugin-buble": "^0.15.0",
    "rollup-plugin-commonjs": "^8.0.2",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-watch": "^3.2.2",
    "uglify-js": "^2.8.13",
    "watchify": "^3.9.0",
    "xo": "^0.18.0"
  },
  "xo": {
    "envs": [
      "browser",
      "node"
    ],
    "globals": [
      "describe",
      "it"
    ],
    "space": true,
    "semicolon": false
  },
  "babel": {
    "env": {
      "test": {
        "presets": [
          "es2015"
        ],
        "sourceMaps": "inline",
        "plugins": [
          "istanbul",
          "transform-object-rest-spread"
        ]
      }
    }
  },
  "dependencies": {
    "inline-style-prefixer": "^3.0.2",
    "kebab-case": "^1.0.0",
    "string-hash": "^1.1.3"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gugutz/stylord.git"
  },
  "bugs": {
    "url": "https://github.com/gugutz/stylord/issues"
  },
  "homepage": "https://github.com/gugutz/stylord#readme"
}
