-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 920 Bytes
/
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
{
"name": "hook-webpack-plugin",
"title": "Hook - webpack plugin",
"version": "1.0.0-dev",
"description": "A hook injector designed for your webpack config.",
"main": "src/HookWebpackPlugin.js",
"scripts": {
"start": "npm run dev",
"test": "tap test/tap/*.test.js",
"dev": "npm run test -- --watch",
"lint": "eslint . --cache",
"pretest": "npm run lint",
"prepack": "npm run test"
},
"keywords": [
"webpack-plugin"
],
"files": [
"src"
],
"author": "Alexis Puga Ruíz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexisPuga/hook-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/AlexisPuga/hook-webpack-plugin/issues"
},
"homepage": "https://github.com/AlexisPuga/hook-webpack-plugin#readme",
"devDependencies": {
"eslint": "^8.13.0",
"tap": "^16.0.1",
"webpack": "^5.37.1"
}
}