-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "@thc/webpack-laboratory",
"version": "1.0.0",
"description": "Ready to use webpack conf for React",
"scripts": {
"lerna": "./node_modules/.bin/lerna",
"bootstrap": "npm run lerna -- bootstrap --no-ci",
"test": "jest --runInBand --no-cache",
"push-tags": "git push --follow-tags origin master",
"beta-release-lerna": "npm run lerna -- publish prerelease --preid beta --dist-tag beta --create-release=github --exact --allow-branch develop",
"release-lerna": "npm run lerna -- publish --create-release=github --exact"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thc-tools/webpack-laboratory.git"
},
"keywords": [
"thc",
"webpack",
"configuration"
],
"author": "THC-Tools",
"license": "MIT",
"bugs": {
"url": "https://github.com/thc-tools/webpack-laboratory/issues"
},
"homepage": "https://github.com/thc-tools/webpack-laboratory#readme",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/config-lerna-scopes": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"husky": "4.3.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"webpack": "4.44.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}