-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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": "merge-json-webpack-plugin",
"version": "6.2.0",
"description": "Webpack plugin to merge multiple json files into one",
"author": "sibiraj-s",
"license": "MIT",
"repository": "https://github.com/sibiraj-s/merge-json-webpack-plugin.git",
"bugs": "https://github.com/sibiraj-s/merge-json-webpack-plugin/issues",
"homepage": "https://github.com/sibiraj-s/merge-json-webpack-plugin#readme",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": ">=12.20.0",
"npm": ">=7.20.0"
},
"files": [
"src/"
],
"scripts": {
"prepublishOnly": "npm run test",
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"prepare": "sh ./scripts/install-husky.sh"
},
"keywords": [
"json-merge",
"merge-json-webpack-plugin",
"webpack-plugin"
],
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"fast-glob": "^3.2.12",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/jest": "^29.5.2",
"eslint": "^8.44.0",
"eslint-config-pegasus": "^3.5.0",
"eslint-plugin-jest": "^27.2.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-extended": "^4.0.0",
"lint-staged": "^13.2.3",
"lodash": "^4.17.21",
"publint": "^0.1.13",
"webpack": "^5.88.1"
}
}