-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 2 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
{
"name": "porting-assistant-dotnet-ui",
"version": "1.9.9",
"productName": "Porting Assistant for .NET",
"description": "Porting Assistant for .NET",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
"url": "http://aws.amazon.com"
},
"repository": {
"type": "git",
"url": "[email protected]:aws/porting-assistant-dotnet-ui.git"
},
"license": "https://github.com/aws/porting-assistant-dotnet-ui/blob/develop/LICENSE",
"scripts": {
"start": "npx lerna run start --scope @porting-assistant/react --scope @porting-assistant/electron --stream --parallel",
"test": "npx lerna run test --stream",
"build": "npx lerna run build --stream",
"create:exe:dev": "npx lerna run create-dev-exe --scope @porting-assistant/electron",
"build:exe:dev": "npx lerna run build-dev-exe --scope @porting-assistant/electron",
"publish:beta": "npx lerna run publish-beta --scope @porting-assistant/electron --",
"publish:preprod": "npx lerna run publish-preprod --scope @porting-assistant/electron --",
"integration-test": "npx lerna run test --scope @porting-assistant/integration-test --stream",
"postinstall": "npx lerna bootstrap",
"version": "npx lerna version --no-push --no-git-tag-version --yes",
"license-checker": "npx license-checker --production --exclude MIT,Apache-2.0,Unlicense,BSD-2-Clause,BSD-3-Clause && npx lerna run license-checker --stream",
"generate-attribution": "npx generate-attribution && npx lerna run generate-attribution --stream"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents",
"prepare-commit-msg": "git-commit-template .commit-msg",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"git-commit-template": "^1.0.5",
"husky": "^7.0.1",
"lerna": "^6.0.1"
},
"dependencies": {
"winston": "^3.3.3"
}
}