Skip to content
This repository has been archived by the owner on Feb 19, 2023. It is now read-only.

Commit

Permalink
feat(#107): improved script command and added coverage treshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Gasser committed May 8, 2019
1 parent 3945c47 commit 3b79027
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"test:coverage": "npm test -- --coverage",
"test:update": "npm test -- --updateSnapshot",
"lint": "eslint -c ./.eslintrc './src/**/{*.js,*.jsx}'",
"lint-fix": "eslint -c ./.eslintrc './src/**/{*.js,*.jsx}' --fix",
"lint:fix": "eslint -c ./.eslintrc './src/**/{*.js,*.jsx}' --fix",
"release": "aws s3 sync --delete ./build s3://529821714029-rekognition.gasserandreas.com/",
"env-push-prod": "aws s3 cp .env.production.local s3://529821714029-rekognition.gasserandreas.com-utils/",
"env-push-test": "aws s3 cp .env.development.local s3://529821714029-rekognition.gasserandreas.com-utils/",
Expand Down Expand Up @@ -110,7 +110,16 @@
"!src/util/sessionUtil.js",
"!src/util/PropTypes.js",
"!**/*.stories.js"
]
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"coverageReporters": ["text"]
},
"description": "AWS Rekognition"
}

0 comments on commit 3b79027

Please sign in to comment.