UNPKG

2.21 kBJSONView Raw
1{
2 "name": "webpackbar",
3 "version": "1.2.1",
4 "description": "Elegant ProgressBar and Profiler for Webpack",
5 "main": "dist/cjs.js",
6 "scripts": {
7 "test": "jest",
8 "test:watch": "jest --watch",
9 "test:fixture": "webpack-cli --config test/fixtures/basic",
10 "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
11 "build:watch": "npm run build -- -w",
12 "clean": "del-cli dist",
13 "lint": "eslint --cache src test",
14 "lint-staged": "lint-staged",
15 "prebuild": "npm run clean",
16 "prepublish": "npm run build",
17 "release": "standard-version",
18 "security": "nsp check",
19 "ci:lint": "npm run lint && npm run security",
20 "ci:test": "npm run test -- --runInBand --ci --coverage"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/nuxt/webpackbar.git"
25 },
26 "keywords": [
27 "webpack",
28 "webpack4",
29 "progress",
30 "progress-bar",
31 "profile",
32 "build",
33 "module"
34 ],
35 "author": "Pooya Parsa <pooya@nuxt.ir>",
36 "license": "MIT",
37 "bugs": {
38 "url": "https://github.com/nuxt/webpackbar/issues"
39 },
40 "homepage": "https://github.com/nuxt/webpackbar#readme",
41 "dependencies": {
42 "chalk": "^2.3.2",
43 "figures": "^2.0.0",
44 "lodash": "^4.17.5",
45 "log-update": "^2.3.0",
46 "pretty-time": "^1.0.0",
47 "table": "^4.0.3"
48 },
49 "devDependencies": {
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 "cross-env": "^5.1.4",
57 "del-cli": "^1.1.0",
58 "eslint": "^4.19.1",
59 "eslint-config-webpack": "^1.2.5",
60 "eslint-plugin-import": "^2.9.0",
61 "jest": "^22.4.3",
62 "lint-staged": "^7.0.0",
63 "nsp": "^3.2.1",
64 "pre-commit": "^1.2.2",
65 "standard-version": "^4.3.0",
66 "webpack": "^4.2.0",
67 "webpack-cli": "^2.0.13",
68 "webpack-defaults": "^1.6.0"
69 },
70 "files": [
71 "dist"
72 ],
73 "engines": {
74 "node": ">= 6.0"
75 },
76 "peerDependencies": {
77 "webpack": "^3.0.0 || ^4.0.0"
78 },
79 "pre-commit": "lint-staged",
80 "lint-staged": {
81 "*.js": [
82 "eslint --fix",
83 "git add"
84 ]
85 }
86}