{ "name": "webpackbar", "version": "2.6.3", "description": "Elegant ProgressBar and Profiler for Webpack", "license": "MIT", "repository": "nuxt/webpackbar", "author": "Pooya Parsa ", "homepage": "https://github.com/nuxt/webpackbar", "bugs": "https://github.com/nuxt/webpackbar/issues", "main": "dist/cjs.js", "engines": { "node": ">= 6.9.0" }, "scripts": { "start": "npm run build -- -w", "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", "clean": "del-cli dist", "commitlint": "commitlint", "commitmsg": "commitlint -e $GIT_PARAMS", "lint": "eslint --cache src test", "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", "lint-staged": "lint-staged", "prebuild": "npm run clean", "prepublish": "npm run build", "release": "standard-version", "release:ci": "conventional-github-releaser -p angular", "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", "security": "nsp check", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", "ci:lint": "npm run lint && npm run security", "ci:test": "npm run test -- --runInBand", "ci:coverage": "npm run test:coverage -- --runInBand", "defaults": "webpack-defaults", "kitchen-sync": "webpack-cli --config kitchen-sync/webpack.config.js" }, "files": [ "dist" ], "peerDependencies": { "webpack": "^3.0.0 || ^4.0.0" }, "dependencies": { "chalk": "^2.4.1", "consola": "^1.4.3", "figures": "^2.0.0", "loader-utils": "^1.1.0", "lodash": "^4.17.10", "log-update": "^2.3.0", "pretty-time": "^1.1.0", "schema-utils": "^1.0.0", "std-env": "^1.3.1", "table": "^4.0.3" }, "devDependencies": { "@commitlint/cli": "^7.0.0", "@commitlint/config-angular": "^7.0.1", "@webpack-contrib/eslint-config-webpack": "^2.0.4", "babel-cli": "^6.26.0", "babel-jest": "^23.4.2", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "codecov": "^3.0.4", "conventional-github-releaser": "^3.1.2", "cross-env": "^5.2.0", "del": "^3.0.0", "del-cli": "^1.1.0", "eslint": "^5.3.0", "eslint-config-webpack": "^1.2.5", "eslint-plugin-import": "^2.13.0", "eslint-plugin-prettier": "^2.6.2", "esm": "^3.0.74", "husky": "^0.14.3", "jest": "^23.5.0", "lint-staged": "^7.2.0", "memory-fs": "^0.4.1", "nsp": "^3.2.1", "pre-commit": "^1.2.2", "prettier": "^1.14.2", "standard-version": "^4.4.0", "webpack": "^4.16.5", "webpack-cli": "^3.1.0", "webpack-defaults": "^2.3.0" }, "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }