forked from adierkens/webpack-inject-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@namecheap/webpack-inject-plugin",
"version": "0.0.0",
"description": "A webpack plugin to dynamically inject code into the bundle.",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint ./src",
"test": "jest",
"test:example": "cd example && webpack && npm run test:example:first && npm run test:example:second",
"test:example:first": "cd example && cat dist/main.js | grep \"console.log('hello world')\"",
"test:example:second": "cd example && cat dist/main.js | grep \"console.log('second injected code')\"",
"test:watch": "npm run test -- --watch",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/webpack-inject-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"loader",
"inject"
],
"author": "Namecheap",
"license": "MIT",
"bugs": {
"url": "https://github.com/namecheap/webpack-inject-plugin/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/namecheap/webpack-inject-plugin#readme",
"peerDependencies": {
"webpack": ">=5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/chai": "^4.3.20",
"@types/jest": "^29.5.14",
"@types/sinon": "^17.0.3",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "8.21.0",
"chai": "^4.5.0",
"commitlint": "^19.6.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-config-xo": "0.46.0",
"eslint-plugin-no-explicit-type-exports": "0.12.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.2",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}