-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
55 lines (55 loc) · 1.79 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
{
"name": "webpack-config-plugins",
"version": "1.0.0",
"private": true,
"description": "Simplify webpack loader configuration",
"bugs": "https://github.com/merkle-open/webpack-config-plugins/issues",
"homepage": "https://github.com/merkle-open/webpack-config-plugins",
"repository": "https://github.com/merkle-open/webpack-config-plugins.git",
"scripts": {
"clean": "npx --ignore-existing --quiet npm-run-all clean:*",
"clean:lerna": "lerna clean --yes",
"clean:lock": "rimraf **/package-lock.json",
"clean:modules": "npx --ignore-existing --quiet rimraf node_modules",
"commit": "git-cz",
"lint": "npm run prettier",
"postinstall": "lerna bootstrap --no-ci --hoist",
"posttest": "npm run lint",
"prettier": "prettier --write \"**/*.*(js|jsx|ts|tsx|json|md)\"",
"release": "lerna publish --conventional-commits --reject-cycles --allow-branch master",
"test": "lerna exec --concurrency 1 -- npm test",
"update-snapshots": "lerna exec -- npm run update-snapshots",
"update-dependencies": "npm-run-all --parallel update-dependencies:*",
"update-dependencies:packages": "lerna exec -- npx npm-check-updates -u",
"update-dependencies:root": "npx npm-check-updates -u -x husky"
},
"keywords": [
"webpack"
],
"license": "MIT",
"devDependencies": {
"@namics/prettier-config": "2.0.0",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.8",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
}
}