UNPKG

3.48 kBJSONView Raw
1{
2 "name": "ask-cli",
3 "version": "2.16.1",
4 "description": "Alexa Skills Kit (ASK) Command Line Interfaces",
5 "bin": {
6 "ask": "bin/ask.js"
7 },
8 "engines": {
9 "node": ">=8.3.0"
10 },
11 "license": "Apache 2.0",
12 "repository": "alexa/ask-cli",
13 "author": {
14 "name": "RonWang",
15 "email": "nongwang@amazon.com"
16 },
17 "keywords": [
18 "alexa",
19 "skill",
20 "cli",
21 "package",
22 "cloudformation",
23 "serverless",
24 "deploy"
25 ],
26 "scripts": {
27 "test": "node ./node_modules/mocha/bin/_mocha -t 10000 -u exports -R spec test/unit/run-test.js",
28 "test:watch": "node ./node_modules/mocha/bin/_mocha test/unit/run-test.js -w",
29 "test:report": "nyc --cache npm test && nyc report --reporter=html",
30 "test:browser": "npm run test:report && open coverage/index.html",
31 "integration-test": "mocha -t 180000 test/integration/run-test.js",
32 "functional-test": "mocha -t 600000 test/functional/run-test.js",
33 "functional-test:clean-up": "node scripts/aws-clean-up.js; node scripts/ask-clean-up.js",
34 "lint": "eslint lib/builtins lib/clients lib/commands lib/controllers lib/model lib/view",
35 "pre-release": "standard-version",
36 "prism": "prism",
37 "postinstall": "node postinstall.js"
38 },
39 "dependencies": {
40 "adm-zip": "^0.4.13",
41 "archiver": "^1.1.0",
42 "ask-smapi-model": "~1.12.2",
43 "ask-smapi-sdk": "^1.2.0",
44 "async": "^2.1.5",
45 "aws-profile-handler": "2.0.3",
46 "aws-sdk": "^2.288.0",
47 "axios": "^0.19.2",
48 "bunyan": "^1.8.12",
49 "chalk": "2.4.2",
50 "commander": "^4.1.1",
51 "date-fns": "^2.7.0",
52 "folder-hash": "^3.0.0",
53 "fs-extra": "^2.1.0",
54 "inquirer": "^6.2.0",
55 "js-yaml": "^3.13.1",
56 "jsonfile": "^2.4.0",
57 "listr": "^0.14.3",
58 "module-alias": "^2.1.0",
59 "mustache": "^4.0.1",
60 "open": "^7.0.3",
61 "ora": "^3.4.0",
62 "portscanner": "^2.1.1",
63 "pretty-bytes": "^5.1.0",
64 "ramda": "^0.27.0",
65 "request": "^2.79.0",
66 "rxjs": "^6.5.2",
67 "semver": "^5.3.0",
68 "shelljs": "^0.8.2",
69 "simple-git": "^1.82.0",
70 "tmp": "^0.1.0",
71 "uuid": "^3.4.0",
72 "valid-url": "^1.0.9"
73 },
74 "devDependencies": {
75 "@commitlint/cli": "^8.2.0",
76 "@commitlint/config-conventional": "^8.2.0",
77 "@stoplight/prism-cli": "^3.3.3",
78 "chai": "^3.5.0",
79 "chai-json-schema": "^1.5.1",
80 "chai-uuid": "^1.0.6",
81 "coveralls": "^3.0.2",
82 "eslint": "^6.8.0",
83 "eslint-config-airbnb-base": "^14.0.0",
84 "eslint-plugin-import": "^2.20.1",
85 "gulp": "^3.9.1",
86 "husky": "^4.2.3",
87 "mocha": "^3.2.0",
88 "mocha.parallel": "^0.15.6",
89 "nyc": "^13.3.0",
90 "proxyquire": "^1.7.11",
91 "sinon": "^6.0.0",
92 "standard-version": "^8.0.1"
93 },
94 "husky": {
95 "hooks": {
96 "pre-commit": "npm run lint",
97 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
98 "pre-push": "npm run test:report"
99 }
100 },
101 "nyc": {
102 "check-coverage": true,
103 "lines": 95,
104 "statements": 95,
105 "functions": 95,
106 "branches": 95,
107 "include": [
108 "lib/utils/string-utils.js",
109 "lib/utils/url-utils.js",
110 "lib/utils/zip-utils.js",
111 "lib/utils/hash-utils.js",
112 "lib/utils/retry-utility.js",
113 "lib/builtins/*",
114 "lib/clients/*",
115 "lib/model/*",
116 "lib/view/*",
117 "lib/controllers/*",
118 "lib/commands/*"
119 ],
120 "exclude": [
121 "lib/clients/aws-client/aws-util.js"
122 ]
123 },
124 "_moduleAliases": {
125 "@root": ".",
126 "@src": "./lib",
127 "@test": "./test"
128 }
129}