source: imaps-frontend/node_modules/webpack-merge/package.json

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "webpack-merge",
3 "description": "Variant of merge that's useful for webpack configuration",
4 "author": "Juho Vepsalainen <bebraw@gmail.com>",
5 "version": "6.0.1",
6 "scripts": {
7 "build": "tsc",
8 "format": "prettier . --write --ignore-path .gitignore",
9 "start": "dts watch",
10 "test": "dts test",
11 "prepare": "npm run build"
12 },
13 "main": "dist/index.js",
14 "typings": "dist/index.d.ts",
15 "files": [
16 "dist"
17 ],
18 "dependencies": {
19 "clone-deep": "^4.0.1",
20 "flat": "^5.0.2",
21 "wildcard": "^2.0.1"
22 },
23 "devDependencies": {
24 "@types/estree": "1.0.2",
25 "@types/flat": "^5.0.3",
26 "dts-cli": "^2.0.3",
27 "husky": "^6.0.0",
28 "prettier": "^3.0.3",
29 "tslib": "^2.6.2",
30 "typescript": "^5.2.2",
31 "webpack": "^5.89.0"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/survivejs/webpack-merge.git"
36 },
37 "homepage": "https://github.com/survivejs/webpack-merge",
38 "bugs": {
39 "url": "https://github.com/survivejs/webpack-merge/issues"
40 },
41 "keywords": [
42 "webpack",
43 "merge"
44 ],
45 "engines": {
46 "node": ">=18.0.0"
47 },
48 "jest": {
49 "collectCoverage": true,
50 "collectCoverageFrom": [
51 "dist/*.js"
52 ]
53 },
54 "license": "MIT",
55 "husky": {
56 "hooks": {
57 "pre-commit": "npm run test"
58 }
59 }
60}
Note: See TracBrowser for help on using the repository browser.