UNPKG

ask-cli

Version:

Alexa Skills Kit (ASK) Command Line Interfaces

128 lines (127 loc) 3.34 kB
{ "name": "ask-cli", "version": "2.11.2", "description": "Alexa Skills Kit (ASK) Command Line Interfaces", "bin": { "ask": "bin/ask.js" }, "engines": { "node": ">=8.3.0" }, "license": "Apache 2.0", "repository": "alexa/ask-cli", "author": { "name": "RonWang", "email": "nongwang@amazon.com" }, "keywords": [ "alexa", "skill", "cli", "package", "cloudformation", "serverless", "deploy" ], "scripts": { "test": "node ./node_modules/mocha/bin/_mocha -t 10000 -u exports -R spec test/unit/run-test.js", "test:watch": "node ./node_modules/mocha/bin/_mocha test/unit/run-test.js -w", "test:report": "nyc --cache npm test && nyc report --reporter=html", "test:browser": "npm run test:report && open coverage/index.html", "integration-test": "mocha -t 180000 test/integration/run-test.js", "functional-test": "mocha -t 180000 test/functional/run-test.js", "lint": "eslint lib/builtins lib/clients lib/commands lib/controllers lib/model lib/view", "pre-release": "standard-version", "prism": "prism" }, "dependencies": { "adm-zip": "^0.4.13", "archiver": "^1.1.0", "ask-smapi-model": "1.9.3", "ask-smapi-sdk": "^1.2.0", "async": "^2.1.5", "aws-profile-handler": "2.0.3", "aws-sdk": "^2.288.0", "axios": "^0.19.2", "bunyan": "^1.8.12", "chalk": "2.4.2", "commander": "^4.1.1", "date-fns": "^2.7.0", "folder-hash": "^3.0.0", "fs-extra": "^2.1.0", "inquirer": "^6.2.0", "js-yaml": "^3.13.1", "jsonfile": "^2.4.0", "listr": "^0.14.3", "module-alias": "^2.1.0", "mustache": "^4.0.1", "open": "^7.0.3", "ora": "^3.4.0", "portscanner": "^2.1.1", "pretty-bytes": "^5.1.0", "ramda": "^0.27.0", "request": "^2.79.0", "rxjs": "^6.5.2", "semver": "^5.3.0", "shelljs": "^0.8.2", "simple-git": "^1.82.0", "tmp": "^0.1.0", "uuid": "^3.4.0", "valid-url": "^1.0.9" }, "devDependencies": { "@commitlint/cli": "^8.2.0", "@commitlint/config-conventional": "^8.2.0", "@stoplight/prism-cli": "^3.3.3", "chai": "^3.5.0", "chai-json-schema": "^1.5.1", "chai-uuid": "^1.0.6", "coveralls": "^3.0.2", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.0.0", "eslint-plugin-import": "^2.20.1", "gulp": "^3.9.1", "husky": "^4.2.3", "mocha": "^3.2.0", "mocha.parallel": "^0.15.6", "nyc": "^13.3.0", "proxyquire": "^1.7.11", "sinon": "^6.0.0", "standard-version": "^7.0.0" }, "husky": { "hooks": { "pre-commit": "npm run lint", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "npm run test:report" } }, "nyc": { "check-coverage": true, "lines": 95, "statements": 95, "functions": 95, "branches": 95, "include": [ "lib/utils/string-utils.js", "lib/utils/url-utils.js", "lib/utils/zip-utils.js", "lib/utils/hash-utils.js", "lib/utils/retry-utility.js", "lib/builtins/*", "lib/clients/*", "lib/model/*", "lib/view/*", "lib/controllers/*", "lib/commands/*" ], "exclude": [ "lib/clients/aws-client/aws-util.js" ] }, "_moduleAliases": { "@root": ".", "@src": "./lib", "@test": "./test" } }