{
  "name": "chillout",
  "description": "Reduce CPU usage by non-blocking async loop and psychologically speed up in JavaScript",
  "version": "5.0.0",
  "author": "polygon planet <polygon.planet.aqua@gmail.com>",
  "bugs": {
    "url": "https://github.com/polygonplanet/chillout/issues"
  },
  "devDependencies": {
    "@babel/core": "^7.8.3",
    "@babel/preset-env": "^7.8.3",
    "babelify": "^10.0.0",
    "bannerify": "^1.0.1",
    "browserify": "^16.5.0",
    "es6-shim": "^0.35.5",
    "eslint": "^6.8.0",
    "karma": "^4.4.1",
    "karma-browserify": "^6.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-detect-browsers": "^2.3.3",
    "karma-es6-shim": "^1.0.0",
    "karma-firefox-launcher": "^1.3.0",
    "karma-ie-launcher": "^1.0.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-safari-launcher": "^1.0.0",
    "mocha": "^7.0.0",
    "package-json-versionify": "^1.0.4",
    "pidusage": "1.0.2",
    "power-assert": "^1.6.1",
    "uglify-js": "^3.7.5",
    "uglifyify": "^5.0.2",
    "watchify": "^3.11.1"
  },
  "engines": {
    "node": ">=8.10.0"
  },
  "files": [
    "dist/*",
    "src/*"
  ],
  "homepage": "https://github.com/polygonplanet/chillout",
  "keywords": [
    "acceleration",
    "async await",
    "asynchronous",
    "cpu use rate",
    "cpu utilization rate",
    "heavy processing",
    "iterate",
    "iteration",
    "lightweight",
    "nextTick",
    "non-blocking",
    "optimization",
    "optimize for loop",
    "performance",
    "promise",
    "reduce cpu usage",
    "setimmediate",
    "waitUntil"
  ],
  "license": "MIT",
  "main": "src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/polygonplanet/chillout.git"
  },
  "scripts": {
    "benchmark": "node benchmark/benchmark",
    "build": "npm run compile && npm run minify",
    "compile": "browserify src/index.js -o dist/chillout.js -s chillout -p [ bannerify --file src/banner.js ] --no-bundle-external --bare",
    "minify": "uglifyjs dist/chillout.js -o dist/chillout.min.js --comments -c -m -b ascii_only=true,beautify=false",
    "test": "./node_modules/.bin/eslint . && npm run build && mocha test/**/*.spec.js --timeout 10000 && karma start karma.conf.js",
    "travis": "npm run build && mocha test/**/*.spec.js --timeout 10000 && karma start karma.conf.js --single-run",
    "watch": "watchify src/index.js -o dist/chillout.js -s chillout -p [ bannerify --file src/banner.js ] --no-bundle-external --bare --poll=200 -v"
  },
  "browserify": {
    "transform": [
      "babelify",
      "package-json-versionify"
    ]
  }
}
