-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 KB
/
package.json
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
{
"name": "@lzwme/feps-webpack-plugin",
"version": "1.3.0",
"description": "This plug-in is used for function execution performance statistics. It calculates the execution time by injecting statistical code and finds slow functions.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "node examples/webpack5-example/webpack.config.js --run --watch",
"version": "standard-version",
"prepare-release": "npm run version",
"release": "npm run prepare-release && npm publish --access=public --registry=https://registry.npmjs.com && git push",
"test": "node examples/webpack5-example/webpack.config.js --run"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lzwme/feps-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"function",
"time-consuming",
"performance",
"statistics",
"benchmark"
],
"author": {
"name": "renxia",
"email": "lzwy0820@qq.com",
"url": "https://lzw.me"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lzwme/feps-webpack-plugin/issues"
},
"homepage": "https://github.com/lzwme/feps-webpack-plugin#readme",
"dependencies": {
"console-log-colors": "^0.4.0"
},
"devDependencies": {
"minimist": "^1.2.8",
"webpack": "^5.88.2"
}
}