{
    "name": "ask-sdk-controls",
    "version": "0.9.2",
    "description": "Skill-building framework & library for Alexa SDK",
    "main": "dist/src/index.js",
    "types": "dist/src/index.d.ts",
    "scripts": {
        "build": "tsc && npm run copyTestSupportFiles && npm run lint",
        "copyTestSupportFiles": "[ -d dist/test/mock ] || mkdir dist/test/mock && cp test/mock/* dist/test/mock/",
        "watch": "tsc-watch --onSuccess 'npm run copyTestSupportFiles'",
        "lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
        "format-check": "prettier --check \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
        "format-overwrite": "prettier -w \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
        "test": "cross-env TS_NODE_FILES=true mocha -r ts-node/register \"./test/**/*.spec.ts\" \"./demo/**/test/**/*.spec.ts\"",
        "test-all": "cross-env TS_NODE_FILES=true mocha --forbid-only -r ts-node/register \"./test/**/*.spec.ts\" \"./demo/**/test/**/*.spec.ts\"",
        "coverage": "nyc --cache npm run test-all && nyc report --reporter=html && echo HTML report generated at coverage/index.html",
        "clean": "rm -rf ./dist",
        "reinstall": "rm -rf ./node_modules && npm install",
        "rebuild": "npm run clean && npm run build",
        "docs": "rm -rf ./dist/api_docs && typedoc --out dist/api_docs src",
        "pre-release": "standard-version",
        "release": "npm run coverage && npm run lint && npm run format-check"
    },
    "dependencies": {
        "ask-sdk-core": "^2.12.1",
        "ask-sdk-local-debug": "^1.1.0",
        "ask-sdk-model": "^1.35.1",
        "ask-smapi-model": "^1.15.3",
        "chai": "^4.2.0",
        "debug": "^4.1.1",
        "i18next": "^19.9.2",
        "lodash": "^4.17.15",
        "tslib": "^2.0.0"
    },
    "peerDependencies": {
        "ask-sdk-core": "^2.12.1",
        "ask-sdk-local-debug": "^1.1.0",
        "ask-sdk-model": "^1.35.1",
        "ask-smapi-model": "^1.15.3",
        "chai": "^4.2.0",
        "debug": "^4.1.1",
        "i18next": "^19.9.2",
        "lodash": "^4.17.15",
        "tslib": "^2.0.0"
    },
    "devDependencies": {
        "@commitlint/cli": "^9.1.2",
        "@commitlint/config-conventional": "^12.1.4",
        "@types/chai": "^4.2.8",
        "@types/debug": "^4.1.5",
        "@types/lodash": "^4.14.149",
        "@types/mocha": "^5.2.7",
        "@types/node": "^10.17.14",
        "@types/sinon": "^7.5.2",
        "@typescript-eslint/eslint-plugin": "^3.10.1",
        "@typescript-eslint/parser": "^3.3.0",
        "cross-env": "^7.0.2",
        "eslint": "^7.2.0",
        "eslint-config-prettier": "^6.11.0",
        "eslint-plugin-tsdoc": "^0.2.5",
        "highlight.js": ">=10.4.1",
        "husky": "^4.2.5",
        "marked": "^4.0.12",
        "mocha": "^7.1.2",
        "nyc": "^15.0.1",
        "prettier": "^2.1.1",
        "sinon": "^9.0.1",
        "source-map-support": "^0.5.19",
        "standard-version": "^9.0.0",
        "ts-node": "^8.10.2",
        "tsc-watch": "^4.2.3",
        "typedoc": "^0.17.6",
        "typedoc-neo-theme": "^1.0.8",
        "typescript": "^3.9.10"
    },
    "husky": {
        "hooks": {
            "commit-msg": "commitlint -E HUSKY_GIT_PARAMS && npm run lint && npm run format-check",
            "pre-push": "npm run test-all"
        }
    },
    "standard-version": {
        "types": [
            {
                "type": "feat",
                "section": "Features"
            },
            {
                "type": "feat_",
                "section": "Feature work - not included in Changelog",
                "hidden": true
            },
            {
                "type": "fix",
                "section": "Bug Fixes"
            },
            {
                "type": "fix_",
                "section": "Bug Fixes - not included in Changelog",
                "hidden": true
            },
            {
                "type": "chore",
                "hidden": true
            },
            {
                "type": "docs",
                "section": "Docs"
            },
            {
                "type": "docs_",
                "section": "Doc work - not included in Changelog",
                "hidden": true
            },
            {
                "type": "style",
                "hidden": true
            },
            {
                "type": "refactor",
                "hidden": true
            },
            {
                "type": "perf",
                "hidden": true
            },
            {
                "type": "test",
                "hidden": true
            },
            {
                "type": "revert",
                "hidden": true
            }
        ]
    },
    "author": "Amazon Alexa Skills Kit SDK team",
    "repository": "github:alexa/ask-sdk-controls",
    "license": "Apache-2.0"
}
