forked from alexa/ask-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ask-cli",
"version": "2.1.0",
"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 -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",
"functional-test": "node ./node_modules/mocha/bin/_mocha test/functional/**/*-test.js",
"lint": "eslint lib/builtins lib/clients lib/commands lib/controllers lib/model lib/view",
"pre-release": "standard-version"
},
"dependencies": {
"adm-zip": "^0.4.13",
"archiver": "^1.1.0",
"ask-smapi-model": "1.6.0",
"ask-smapi-sdk": "^1.1.1",
"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.25.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",
"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",
"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"
}
}