-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
{
"name": "webpack-config-organizer",
"version": "0.3.1",
"description": "A helper for separating concerns related to webpack environment and preset config files",
"main": "./lib/index.js",
"engines": {
"node": ">=14"
},
"exports": {
"node": {
"import": "./lib/index.js",
"require": "./dist/main.cjs"
},
"default": "./dist/main.cjs"
},
"type": "module",
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "webpack --env mode=production",
"dev": "npm run build -- --watch",
"prettier": "prettier .",
"format:check": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"lint": "eslint .",
"test": "jest",
"test:watch": "npm t -- --watch",
"prepare": "husky install && npm run build"
},
"lint-staged": {
"./lib/*": "eslint",
"*": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pherval/webpack-config-organizer.git"
},
"keywords": [
"webpack",
"helper"
],
"author": "Peter Leiva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pherval/webpack-config-organizer/issues"
},
"homepage": "https://github.com/pherval/webpack-config-organizer#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"debug": "^4.3.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-junit": "^12.0.0",
"jest-watch-typeahead": "^0.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"webpack": "5.67.0",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"cosmiconfig": "^7.0.1",
"lodash": "^4.17.21",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"webpack": "^5.37.0"
}
}