{
  "name": "voxelcss",
  "version": "1.1.0",
  "homepage": "https://voxelcss.js.org",
  "author": "Jason Wohlgemuth",
  "license": "MIT",
  "description": "Voxel.css with updated project architecture, robust tests, and npm availability",
  "main": "./dist/voxelcss.js",
  "keywords": [
    "voxel",
    "voxels",
    "css",
    "fun",
    "browser"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jhwohlgemuth/voxelcss.git"
  },
  "engines": {
    "node": "*"
  },
  "babel": {
    "presets": [
      "env",
      "minify"
    ]
  },
  "jest": {
    "testMatch": [
      "**/test**/*.js"
    ],
    "setupFiles": [
      "jest-localstorage-mock"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-preset-env": "^1.6.0",
    "babel-preset-minify": "^0.3.0",
    "bluebird": "^3.5.1",
    "browser-sync": "^2.23.6",
    "browserify": "^14.4.0",
    "browserify-css": "^0.14.0",
    "chalk": "^2.0.1",
    "coveralls": "^3.0.0",
    "cssnano": "^3.10.0",
    "eslint": "^4.2.0",
    "eslint-config-omaha-prime-grade": "^8.0.0",
    "eslint-plugin-compat": "^1.0.4",
    "eslint-plugin-html": "^4.0.0",
    "http-server": "^0.10.0",
    "jest": "^20.0.4",
    "jest-image-snapshot": "^2.0.0",
    "jest-localstorage-mock": "^2.0.0",
    "jsdoc": "^3.5.3",
    "minami": "^1.2.3",
    "postcss": "^6.0.8",
    "postcss-cli": "^5.0.0",
    "postcss-cssnext": "^3.0.2",
    "postcss-import": "^11.0.0",
    "postcss-reporter": "^5.0.0",
    "postcss-safe-parser": "^3.0.1",
    "puppeteer": "^1.3.0",
    "watch": "^1.0.2"
  },
  "scripts": {
    "dev": "stmux --mouse --title 'Voxelcss dev task' [ [ \"npm run lint:watch\" : [ \"npm run build:watch\" .. \"npm run design\" ] ] .. \"npm run test:watch -- --coverage\" ]",
    "design": "npm run build && npm run browsersync",
    "docs": "jsdoc ./lib/*.js --destination ./docs --readme ./README.md --template ./node_modules/minami",
    "lint": "eslint -c ./.eslintrc.js ./lib/*.js --fix",
    "lint:watch": "watch 'npm run lint' ./lib",
    "lint:tests": "eslint -c ./.eslintrc.js ./test/*.js ./test/demo/index.html --fix",
    "test": "jest .*.test.js",
    "pretest:visual": "npm run capture",
    "test:visual": "jest visual-regression",
    "test:watch": "npm test -- --watch",
    "precapture": "npm run server:start",
    "capture": "node ./test/lib/captureScreenshots",
    "precapture:reset": "rm -frd ./test/__image_snapshots__",
    "capture:reset": "npm run capture",
    "capture:delete": "rm ./test/lib/screenshots/*.png",
    "postcapture": "npm run server:stop",
    "test:ci": "npm run coverage && npm run test:visual && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "test:travis": "npm run test:ci",
    "prebuild": "postcss ./assets/voxelcss.css -d ./dist",
    "build": "npm run bundle",
    "build:watch": "watch 'npm run build && browser-sync reload --port 1337' ./lib ./assets",
    "postbuild": "npm run transpile",
    "preversion": "npm test",
    "postversion": "git push && git push --tags",
    "coverage": "npm test -- --coverage",
    "server:start": "nohup http-server -p 1337 &",
    "server:stop": "kill $(echo `ps -ef | grep -m 1 http-server` | awk -F \" \" '{print $2}')",
    "bundle": "browserify -g browserify-css -e ./lib/index.js ./lib/index.js --standalone voxelcss -o ./dist/voxelcss.js",
    "transpile": "babel ./dist/voxelcss.js --out-file ./dist/voxelcss.js",
    "browsersync": "browser-sync start --server ./test/demo --serveStatic . --files test/demo --open ./test/demo/index.html --port 1337"
  },
  "dependencies": {}
}
