-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "copy-asset-in-memory-webpack-plugin",
"version": "4.0.1",
"description": "Copy assets in webpack memory",
"author": "sibiraj-s",
"license": "MIT",
"repository": "https://github.com/sibiraj-s/copy-asset-in-memory-webpack-plugin.git",
"bugs": "https://github.com/sibiraj-s/copy-asset-in-memory-webpack-plugin/issues",
"homepage": "https://github.com/sibiraj-s/copy-asset-in-memory-webpack-plugin#readme",
"main": "src/index.js",
"typings": "src/index.d.ts",
"engines": {
"node": ">=12.13"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"prepare": "sh ./scripts/install-husky.sh"
},
"keywords": [
"webpack",
"webpack-plugin",
"copy-plugin",
"copy-webpack-plugin",
"copy-asset-in-memory-webpack-plugin",
"copy"
],
"peerDependencies": {
"webpack": "^5.20.0"
},
"dependencies": {
"schema-utils": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@jest/globals": "^29.5.0",
"compression-webpack-plugin": "^10.0.0",
"eslint": "^8.44.0",
"eslint-config-pegasus": "^3.5.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"publint": "^0.1.15",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.1"
}
}