UNPKG

1.54 kBJSONView Raw
1{
2 "name": "speed-measure-webpack-plugin",
3 "version": "1.4.0",
4 "description": "Measure + analyse the speed of your webpack loaders and plugins",
5 "main": "index.js",
6 "scripts": {
7 "test": "jest",
8 "functional-test": "lerna bootstrap && lerna run full-test",
9 "audit-fix": "npm audit fix && lerna run audit-fix --parallel",
10 "documentation-test": "alex ./*.md && write-good ./*.md",
11 "lint": "prettier --check \"*.{js,json,css,md}\"",
12 "fixlint": "prettier --write \"*.{js,json,css,md}\"",
13 "ac": "all-contributors"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/stephencookdev/speed-measure-webpack-plugin.git"
18 },
19 "author": {
20 "name": "Stephen Cook",
21 "email": "stephen@stephencookdev.co.uk"
22 },
23 "husky": {
24 "hooks": {
25 "pre-commit": "lint-staged"
26 }
27 },
28 "lint-staged": {
29 "*.{js,json,css,md}": [
30 "prettier --write",
31 "git add"
32 ]
33 },
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/stephencookdev/speed-measure-webpack-plugin/issues"
37 },
38 "homepage": "https://github.com/stephencookdev/speed-measure-webpack-plugin#readme",
39 "engines": {
40 "node": ">=6.0.0"
41 },
42 "peerDependencies": {
43 "webpack": "^1 || ^2 || ^3 || ^4"
44 },
45 "devDependencies": {
46 "alex": "^9.1.0",
47 "all-contributors-cli": "^6.19.0",
48 "husky": "^4.2.3",
49 "jest": "^26.6.3",
50 "lerna": "^3.22.1",
51 "lint-staged": "^10.0.8",
52 "prettier": "^2.2.1",
53 "write-good": "^1.0.2"
54 },
55 "dependencies": {
56 "chalk": "^4.1.0"
57 }
58}