-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "speed-measure-webpack-plugin",
"version": "1.6.0",
"description": "Measure + analyse the speed of your webpack loaders and plugins",
"main": "index.js",
"scripts": {
"prepare": "husky",
"test": "bun test",
"ci": "bun run test && bun run functional-test && bun run documentation-test && bun run lint",
"functional-test": "bun scripts/run-setups.js full-test --install",
"audit-fix": "bun audit",
"documentation-test": "alex ./*.md && write-good --no-adverb ./*.md",
"lint": "prettier --check \"*.{js,json,css,md}\"",
"fixlint": "prettier --write \"*.{js,json,css,md}\"",
"ac": "bun x all-contributors-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephencookdev/speed-measure-webpack-plugin.git"
},
"author": {
"name": "Stephen Cook",
"email": "stephen@stephencookdev.co.uk"
},
"license": "MIT",
"packageManager": "bun@1.3.8",
"bugs": {
"url": "https://github.com/stephencookdev/speed-measure-webpack-plugin/issues"
},
"homepage": "https://github.com/stephencookdev/speed-measure-webpack-plugin#readme",
"engines": {
"node": ">=6.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=18",
"onFail": "error"
}
},
"peerDependencies": {
"webpack": "^1 || ^2 || ^3 || ^4 || ^5"
},
"devDependencies": {
"alex": "^11.0.1",
"husky": "^9.1.7",
"lint-staged": "^10.0.8",
"prettier": "^2.2.1",
"write-good": "^1.0.2"
},
"dependencies": {
"chalk": "^4.1.0"
}
}