{
  "name": "angular-formio",
  "version": "0.2.0",
  "description": "The Form.io dynamic form and data management system for Angular.",
  "main": "./bundles/angular-formio.umd.js",
  "module": "./index.js",
  "typings": "./index.d.ts",
  "scripts": {
    "start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
    "build:demo": "webpack --env=production",
    "build:umd": "webpack --config webpack.config.umd.ts",
    "build:ngc": "ngc -p tsconfig-ngc.json",
    "build:dist": "npm run build:umd && npm run build:ngc",
    "build:clean": "del-cli dist",
    "test": "karma start --single-run && npm run build:dist && npm run build:clean",
    "test:watch": "karma start --auto-watch",
    "commit": "git-cz",
    "compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivateOrInternalSupport",
    "gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && del-cli *.js *.js.map && npm run build:demo && npm run compodoc && git add . && git commit -m \"chore: build demo and docs\" && git push && git checkout master",
    "copyfiles": "copyfiles package.json LICENSE README.md CHANGELOG.md dist",
    "release:git": "git add package.json && git commit -m \"chore: bump version number\" && standard-version --first-release && git push --follow-tags origin master",
    "release:npm": "npm run build:dist && npm run copyfiles && npm publish dist",
    "release": "npm run release:git && npm run release:npm",
    "postrelease": "npm run build:clean && npm run gh-pages",
    "commitmsg": "validate-commit-msg",
    "codecov": "cat coverage/lcov.info | codecov",
    "prettier": "prettier --single-quote --parser typescript --write",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "{demo,src,test}/**/*.ts": [
      "npm run prettier",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/formio/angular-formio.git"
  },
  "keywords": [
    "angular4",
    "angular2",
    "angular"
  ],
  "author": "Travis Tidwell",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/formio/angular-formio/issues"
  },
  "homepage": "https://github.com/formio/angular-formio#readme",
  "devDependencies": {
    "@angular/common": "^4.0.0",
    "@angular/compiler": "^4.0.0",
    "@angular/compiler-cli": "^4.0.0",
    "@angular/core": "^4.0.0",
    "@angular/forms": "^4.0.0",
    "@angular/language-service": "^4.0.0",
    "@angular/platform-browser": "^4.0.0",
    "@angular/platform-browser-dynamic": "^4.0.0",
    "@angular/router": "^4.0.0",
    "@compodoc/compodoc": "^1.0.0-beta.3",
    "@mattlewis92/webpack-karma-die-hard": "^1.0.4",
    "@ngtools/webpack": "^1.5.2",
    "@types/chai": "^4.0.0",
    "@types/html-webpack-plugin": "^2.11.2",
    "@types/mocha": "^2.2.41",
    "@types/node": "^8.0.19",
    "@types/sinon": "^2.1.2",
    "@types/sinon-chai": "^2.7.26",
    "@types/webpack": "^3.0.4",
    "chai": "^4.0.0",
    "codecov": "^2.1.0",
    "codelyzer": "^3.0.0",
    "commitizen": "^2.8.1",
    "concurrently": "^3.0.0",
    "copyfiles": "^1.2.0",
    "core-js": "^2.4.1",
    "css-loader": "^0.28.5",
    "cz-conventional-changelog": "^2.0.0",
    "del-cli": "^1.0.0",
    "fork-ts-checker-webpack-plugin": "^0.2.2",
    "html-loader": "^0.5.1",
    "html-webpack-plugin": "^2.28.0",
    "husky": "^0.14.3",
    "istanbul-instrumenter-loader": "^3.0.0",
    "karma": "^1.4.1",
    "karma-chrome-launcher": "^2.1.1",
    "karma-coverage-istanbul-reporter": "^1.0.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.3",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^2.0.1",
    "lint-staged": "^4.0.2",
    "mocha": "^3.3.0",
    "offline-plugin": "^4.8.3",
    "prettier": "^1.5.3",
    "rxjs": "^5.0.1",
    "sinon": "^2.0.0",
    "sinon-chai": "^2.8.0",
    "standard-version": "^4.0.0",
    "style-loader": "^0.18.2",
    "ts-loader": "^2.1.0",
    "ts-node": "^3.0.0",
    "tslint": "^5.1.0",
    "tslint-config-mwl": "^0.2.0",
    "tslint-loader": "^3.5.3",
    "typescript": "~2.4.1",
    "url-loader": "^0.5.9",
    "validate-commit-msg": "^2.8.0",
    "webpack": "^3.3.0",
    "webpack-angular-externals": "^1.0.0",
    "webpack-config-utils": "^2.3.0",
    "webpack-dev-server": "^2.2.0",
    "webpack-rxjs-externals": "^1.0.0",
    "zone.js": "^0.8.4"
  },
  "peerDependencies": {
    "@angular/core": ">=2.0.0 <5.0.0"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "dependencies": {
    "formiojs": "^2.14.1",
    "lodash": "^4.17.4",
    "ngx-bootstrap": "^1.8.1"
  }
}
