mattupstate/angular-pipeline-example

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "angular-pipeline-example",
  "version": "0.1.0",
  "scripts": {
    "allure-report-app": "allure generate reports/app/allure/xml -o reports/app/allure/html",
    "allure-report-e2e": "allure generate reports/e2e/allure/xml -o reports/e2e/allure/html",
    "audit-ci": "[ $(npm audit --json | jq '.metadata.vulnerabilities | .moderate + .high + .critical > 3') = \"false\" ] || npm audit",
    "build-prod-en": "ng build -c production-en",
    "build-prod-es": "ng build -c production-es",
    "build-prod": "npm run build-prod-en && npm run build-prod-es",
    "build": "ng build",
    "e2e-ci": "ng e2e -c ci",
    "e2e": "ng e2e",
    "i18n-extract": "ng xi18n --output-path=locale",
    "lint-app-ci": "mkdir -p reports/app/lint && ng lint angular-pipeline-example --format checkstyle > reports/app/lint/checkstyle.xml",
    "lint-ci": "npm run lint-app-ci && npm run lint-e2e-ci",
    "lint-e2e-ci": "mkdir -p reports/e2e/lint && ng lint angular-pipeline-example-e2e --format checkstyle > reports/e2e/lint/checkstyle.xml",
    "lint": "ng lint",
    "ng": "ng",
    "smoke-ci": "ng e2e -c smoke",
    "start": "ng serve",
    "test-ci": "ng test -c ci",
    "test": "ng test"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.2.13",
    "@angular/common": "~7.2.13",
    "@angular/compiler": "~7.2.13",
    "@angular/core": "~7.2.13",
    "@angular/forms": "~7.2.13",
    "@angular/platform-browser": "~7.2.13",
    "@angular/platform-browser-dynamic": "~7.2.13",
    "@angular/router": "~7.2.13",
    "@sentry/browser": "^5.1.1",
    "core-js": "~2.6.5",
    "rollbar": "^2.6.1",
    "rxjs": "~6.3.3",
    "tslib": "~1.9.3",
    "zone.js": "~0.8.26"
  },
  "devDependencies": {
    "@angular-builders/custom-webpack": "^7.4.3",
    "@angular-builders/dev-server": "^7.3.1",
    "@angular-devkit/build-angular": "~0.13.8",
    "@angular/cli": "~7.3.8",
    "@angular/compiler-cli": "~7.2.13",
    "@angular/language-service": "~7.2.13",
    "@types/jasmine": "~2.8.8",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "ajv": "~6.10.0",
    "codelyzer": "~4.5.0",
    "jasmine-allure-reporter": "~1.0.2",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~4.0.1",
    "karma-allure-reporter": "^1.4.5",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.5",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "~0.2.2",
    "protractor": "~5.4.0",
    "ts-morph": "~1.3.3",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.2.2"
  }
}