{
  "name": "wolkenkratzer",
  "version": "0.12.1",
  "description": "Library for generating CloudFormation templates",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "example": "examples",
    "test": "test"
  },
  "dependencies": {
    "aws-sdk": "^2.171.0",
    "bluebird": "^3.5.0",
    "cloudformation-schema-js-yaml": "^1.0.1",
    "fs-extra": "^5.0.0",
    "js-yaml": "^3.10.0",
    "jszip": "^3.1.3",
    "klaw": "^2.1.1",
    "lodash": "^4.17.4"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.8",
    "@types/core-js": "^0.9.43",
    "@types/jest": "^21.1.7",
    "@types/lodash": "^4.14.74",
    "@types/node": "^8.0.25",
    "core-js": "^2.4.1",
    "coveralls": "^3.0.0",
    "documentation": "^5.2.2",
    "husky": "^0.14.3",
    "jest": "22.0.3",
    "jsdoc-to-markdown": "^3.0.0",
    "prettier": "^1.5.3",
    "rollup": "^0.52.3",
    "rollup-plugin-commonjs": "^8.0.2",
    "rollup-plugin-json": "^2.3.0",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.1.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-sizes": "^0.4.0",
    "rollup-plugin-typescript2": "^0.9.0",
    "standard-version": "^4.2.0",
    "ts-jest": "^22.0.0",
    "ts-loader": "^3.1.1",
    "tslint": "^5.7.0",
    "typedoc": "^0.9.0",
    "typedoc-plugin-markdown": "^1.0.11",
    "typescript": "2.6.2",
    "webpack": "^3.5.5"
  },
  "scripts": {
    "cp-ec2info": "cp -R src/ec2info.json dist/ec2info.json",
    "rollup": "node_modules/.bin/rollup --config rollup.config.js",
    "build": "tsc && npm run cp-ec2info && npm run rollup",
    "test": "jest",
    "linecount": "cloc --vcs=git .",
    "coverage": "jest --coverage",
    "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "docs": "typedoc --out docs src --mode file --theme markdown --readme README.stub.md && mv docs/README.md . && rm -rf docs",
    "debug": "node --debug-brk --inspect ./node_modules/jest/bin/jest -i",
    "update-submodules": "git submodule update --remote --merge",
    "update-specs": "sh ./update_specs.sh",
    "update-ec2info": "node src/transform/buildEC2Data.js",
    "release:major": "npm version major && git push --follow-tags && npm publish",
    "release:minor": "npm version minor && git push --follow-tags && npm publish",
    "release:patch": "npm version patch && git push --follow-tags && npm publish",
    "release": "standard-version",
    "webpack": "webpack",
    "lint": "tslint '*(src|tests)/**/*.ts'"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arminhammer/wolkenkratzer.git"
  },
  "keywords": [
    "CloudFormation",
    "AWS",
    "Template",
    "Cloud",
    "aws-sdk",
    "ecs"
  ],
  "author": "Armin Graf",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/arminhammer/wolkenkratzer/issues"
  },
  "homepage": "https://github.com/arminhammer/wolkenkratzer#readme",
  "jest": {
    "silent": false,
    "verbose": true,
    "collectCoverageFrom": [
      "!**/node_modules/**",
      "!src/ec2info/**/*",
      "!src/browser.ts",
      "!src/types.ts",
      "src/**/*.ts"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ],
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "transformIgnorePatterns": [
      "/!node_modules\\/lodash-es/"
    ],
    "testPathIgnorePatterns": [],
    "testMatch": [
      "<rootDir>/tests/**/*.spec\\.(js|ts)"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
