-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
55
56
57
58
59
60
{
"name": "strip-code-webpack-plugin",
"version": "1.1.0",
"description": "A webpack plugin that strips marked blocks from any code processed by webpack.",
"license": "MIT",
"type": "module",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kudashevs/strip-code-webpack-plugin.git"
},
"homepage": "https://github.com/kudashevs/strip-code-webpack-plugin",
"bugs": "https://github.com/kudashevs/strip-code-webpack-plugin/issues",
"keywords": [
"webpack",
"strip code",
"strip blocks",
"strip code blocks",
"remove code",
"remove blocks",
"remove code blocks",
"webpack strip code",
"webpack remove blocks"
],
"authors": [
{
"name": "Sergey Kudashev",
"email": "kudashevs@gmail.com"
}
],
"peerDependencies": {
"webpack": ">=5.0.0"
},
"dependencies": {
"strip-code": "^1.1.0",
"webpack-sources": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"memfs": "^3.4.1",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"tmp": "^0.2.3",
"typescript": "^5.6.3",
"vitest": "^2.1.6",
"webpack": "^5.92.0"
},
"scripts": {
"test": "vitest run",
"test:unit": "npm run test ./test/unit/",
"test:spec": "npm run test ./test/acceptance/",
"test:coverage": "vitest run --coverage",
"lint": "eslint --cache .",
"format": "prettier --write \"**/*.+(js|json)\" --",
"check": "tsc"
}
}