1 | {
|
2 | "name": "webpackbar",
|
3 | "version": "3.1.0",
|
4 | "description": "Elegant ProgressBar and Profiler for Webpack",
|
5 | "license": "MIT",
|
6 | "repository": "nuxt/webpackbar",
|
7 | "author": "Pooya Parsa <pooya@pi0.ir>",
|
8 | "homepage": "https://github.com/nuxt/webpackbar",
|
9 | "bugs": "https://github.com/nuxt/webpackbar/issues",
|
10 | "main": "dist/cjs.js",
|
11 | "engines": {
|
12 | "node": ">= 6.9.0"
|
13 | },
|
14 | "scripts": {
|
15 | "start": "npm run build -- -w",
|
16 | "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
|
17 | "clean": "del-cli dist",
|
18 | "lint": "eslint --cache src test",
|
19 | "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
20 | "lint-staged": "lint-staged",
|
21 | "prebuild": "npm run clean",
|
22 | "prepublish": "npm run build",
|
23 | "release": "standard-version",
|
24 | "release:ci": "conventional-github-releaser -p angular",
|
25 | "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
|
26 | "security": "nsp check",
|
27 | "test": "jest",
|
28 | "test:watch": "jest --watch",
|
29 | "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
|
30 | "ci:lint": "npm run lint && npm run security",
|
31 | "ci:test": "npm run test -- --runInBand",
|
32 | "ci:coverage": "npm run test:coverage -- --runInBand",
|
33 | "defaults": "webpack-defaults",
|
34 | "demo": "webpack-cli --config demo/webpack.config.js"
|
35 | },
|
36 | "files": [
|
37 | "dist"
|
38 | ],
|
39 | "peerDependencies": {
|
40 | "webpack": "^3.0.0 || ^4.0.0"
|
41 | },
|
42 | "dependencies": {
|
43 | "ansi-escapes": "^3.1.0",
|
44 | "chalk": "^2.4.1",
|
45 | "consola": "^2.2.4",
|
46 | "figures": "^2.0.0",
|
47 | "pretty-time": "^1.1.0",
|
48 | "std-env": "^2.2.1",
|
49 | "text-table": "^0.2.0",
|
50 | "wrap-ansi": "^4.0.0"
|
51 | },
|
52 | "devDependencies": {
|
53 | "@commitlint/cli": "^7.2.1",
|
54 | "@commitlint/config-angular": "^7.1.2",
|
55 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
56 | "babel-cli": "^6.26.0",
|
57 | "babel-jest": "^23.6.0",
|
58 | "babel-plugin-transform-object-rest-spread": "^6.26.0",
|
59 | "babel-polyfill": "^6.26.0",
|
60 | "babel-preset-env": "^1.7.0",
|
61 | "codecov": "^3.1.0",
|
62 | "conventional-github-releaser": "^3.1.2",
|
63 | "cross-env": "^5.2.0",
|
64 | "del": "^3.0.0",
|
65 | "del-cli": "^1.1.0",
|
66 | "eslint": "^5.8.0",
|
67 | "eslint-config-webpack": "^1.2.5",
|
68 | "eslint-plugin-import": "^2.14.0",
|
69 | "eslint-plugin-prettier": "^3.0.0",
|
70 | "esm": "^3.0.84",
|
71 | "husky": "^1.1.3",
|
72 | "jest": "^23.6.0",
|
73 | "lint-staged": "^8.0.4",
|
74 | "memory-fs": "^0.4.1",
|
75 | "nsp": "^3.2.1",
|
76 | "prettier": "^1.15.1",
|
77 | "standard-version": "^4.4.0",
|
78 | "webpack": "^4.25.1",
|
79 | "webpack-cli": "^3.1.2",
|
80 | "webpack-defaults": "^2.3.0"
|
81 | },
|
82 | "husky": {
|
83 | "hooks": {
|
84 | "pre-commit": "lint-staged",
|
85 | "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
86 | }
|
87 | },
|
88 | "lint-staged": {
|
89 | "*.js": [
|
90 | "eslint --fix",
|
91 | "git add"
|
92 | ]
|
93 | }
|
94 | }
|