UNPKG

2.95 kBJSONView Raw
1{
2 "name": "webpackbar",
3 "version": "1.4.0",
4 "author": "Pooya Parsa <pooya@pi0.ir>",
5 "description": "Elegant ProgressBar and Profiler for Webpack",
6 "license": "MIT",
7 "main": "dist/cjs.js",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "start": "npm run build -- -w",
13 "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
14 "clean": "del-cli dist",
15 "commitlint": "commitlint",
16 "commitmsg": "commitlint -e $GIT_PARAMS",
17 "lint": "eslint --cache src test",
18 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
19 "lint-staged": "lint-staged",
20 "prebuild": "npm run clean",
21 "prepublish": "npm run build",
22 "release": "standard-version",
23 "release:ci": "conventional-github-releaser -p angular",
24 "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
25 "security": "nsp check",
26 "test": "jest",
27 "test:watch": "jest --watch",
28 "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
29 "ci:lint": "npm run lint && npm run security",
30 "ci:test": "npm run test -- --runInBand",
31 "ci:coverage": "npm run test:coverage -- --runInBand",
32 "defaults": "webpack-defaults",
33 "kitchen-sync": "webpack-cli --config kitchen-sync/webpack.config.js"
34 },
35 "dependencies": {
36 "chalk": "^2.3.2",
37 "figures": "^2.0.0",
38 "is-ci": "^1.1.0",
39 "loader-utils": "^1.1.0",
40 "lodash": "^4.17.5",
41 "log-update": "^2.3.0",
42 "pretty-time": "^1.0.0",
43 "schema-utils": "^0.4.5",
44 "table": "^4.0.3"
45 },
46 "devDependencies": {
47 "@commitlint/cli": "^6.1.3",
48 "@commitlint/config-angular": "^6.1.3",
49 "@webpack-contrib/eslint-config-webpack": "^2.0.2",
50 "babel-cli": "^6.26.0",
51 "babel-jest": "^22.4.3",
52 "babel-plugin-transform-object-rest-spread": "^6.26.0",
53 "babel-polyfill": "^6.26.0",
54 "babel-preset-env": "^1.6.1",
55 "codecov": "^3.0.0",
56 "conventional-github-releaser": "^2.0.2",
57 "cross-env": "^5.1.4",
58 "del": "^3.0.0",
59 "del-cli": "^1.1.0",
60 "eslint": "^4.19.1",
61 "eslint-config-webpack": "^1.2.5",
62 "eslint-plugin-import": "^2.9.0",
63 "eslint-plugin-prettier": "^2.6.0",
64 "esm": "^3.0.11",
65 "husky": "^0.14.3",
66 "jest": "^22.4.3",
67 "lint-staged": "^7.0.0",
68 "memory-fs": "^0.4.1",
69 "nsp": "^3.2.1",
70 "pre-commit": "^1.2.2",
71 "prettier": "^1.11.1",
72 "standard-version": "^4.3.0",
73 "webpack": "^4.3.0",
74 "webpack-cli": "^2.0.13",
75 "webpack-defaults": "^2.0.0"
76 },
77 "engines": {
78 "node": ">= 6.9.0 || >= 8.9.0"
79 },
80 "peerDependencies": {
81 "webpack": "^3.0.0 || ^4.0.0"
82 },
83 "homepage": "https://github.com/nuxt/webpackbar",
84 "repository": "https://github.com/nuxt/webpackbar",
85 "bugs": "https://github.com/nuxt/webpackbar/issues",
86 "pre-commit": "lint-staged",
87 "lint-staged": {
88 "*.js": [
89 "eslint --fix",
90 "git add"
91 ]
92 }
93}