webpackbar
Version:
Elegant ProgressBar and Profiler for Webpack
95 lines (94 loc) • 2.87 kB
JSON
{
"name": "webpackbar",
"version": "3.1.1",
"description": "Elegant ProgressBar and Profiler for Webpack",
"license": "MIT",
"repository": "nuxt/webpackbar",
"author": "Pooya Parsa <pooya@pi0.ir>",
"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",
"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",
"demo": "webpack-cli --config demo/webpack.config.js"
},
"files": [
"dist"
],
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"ansi-escapes": "^3.1.0",
"chalk": "^2.4.1",
"consola": "^2.2.4",
"figures": "^2.0.0",
"pretty-time": "^1.1.0",
"std-env": "^2.2.1",
"text-table": "^0.2.0",
"wrap-ansi": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"conventional-github-releaser": "^3.1.2",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.8.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"esm": "^3.0.84",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"memory-fs": "^0.4.1",
"nsp": "^3.2.1",
"prettier": "^1.15.1",
"standard-version": "^4.4.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-defaults": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}