UNPKG

webpack-dashboard

Version:
74 lines (73 loc) 2.26 kB
{ "name": "webpack-dashboard", "version": "3.0.4", "description": "a CLI dashboard for webpack dev server", "bin": "bin/webpack-dashboard.js", "main": "index.js", "engines": { "node": ">=8.0.0" }, "types": "index.d.ts", "scripts": { "test": "mocha 'test/**/*.spec.js'", "test-cov": "nyc mocha 'test/**/*.spec.js'", "lint": "eslint .", "check": "npm run format-check && npm run lint && npm run test && npm run check-ts", "check-ci": "npm run format-check && npm run lint && npm run test-cov && npm run check-ts", "check-ts": "tsc index.d.ts --noEmit", "dev": "cross-env EXAMPLE=duplicates-esm node bin/webpack-dashboard.js -- webpack-cli --config examples/config/webpack.config.js --watch", "format": "prettier --write './{bin,examples,plugin,test,utils}/**/*.js'", "format-check": "prettier --list-different './{bin,examples,plugin,test,utils}/**/*.js'" }, "repository": { "type": "git", "url": "git+https://github.com/FormidableLabs/webpack-dashboard.git" }, "keywords": [ "webpack", "cli", "plugin", "dashboard" ], "author": "Ken Wheeler", "license": "MIT", "bugs": { "url": "https://github.com/FormidableLabs/webpack-dashboard/issues" }, "homepage": "https://github.com/FormidableLabs/webpack-dashboard#readme", "peerDependencies": { "webpack": "*" }, "dependencies": { "commander": "^2.15.1", "cross-spawn": "^6.0.5", "filesize": "^3.6.1", "handlebars": "^4.1.2", "inspectpack": "^4.2.1", "most": "^1.7.3", "neo-blessed": "^0.2.0", "socket.io": "^2.1.1", "socket.io-client": "^2.1.1" }, "devDependencies": { "babel-eslint": "^8.2.3", "chai": "^4.1.2", "cross-env": "^5.2.0", "eslint": "^4.19.1", "eslint-config-formidable": "^4.0.0", "eslint-config-prettier": "^4.0.0", "eslint-plugin-filenames": "^1.1.0", "eslint-plugin-import": "^2.12.0", "eslint-plugin-prettier": "^3.0.1", "eslint-plugin-promise": "^3.7.0", "mocha": "^5.2.0", "nyc": "^13.3.0", "prettier": "^1.16.4", "sinon": "^5.0.7", "sinon-chai": "^3.0.0", "typescript": "^3.2.4", "webpack": "^4.8.3", "webpack-cli": "^3.2.3", "webpack-stats-plugin": "^0.2.1" } }