-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "alexa-skill-test-framework",
"displayName": "Alexa Skill Test Framework",
"version": "1.2.4",
"description": "Framework for easy offline black-box testing of Alexa skills.",
"keywords": [
"alexa",
"amazon",
"echo",
"test",
"offline",
"mocha",
"black box",
"black-box",
"coverage"
],
"license": "MIT",
"author": {
"name": "Brian MacIntosh",
"email": "[email protected]",
"url": "http://brianmacintosh.com/"
},
"contributors": [
{
"name": "Thorsten Hoeger",
"email": "[email protected]",
"url": "https://www.taimos.de"
}
],
"scripts": {
"test": "eslint index.js && mocha --recursive examples/**/*-tests.js --slow 200"
},
"files": [
"index.js",
"examples"
],
"directories": {
"example": "./examples"
},
"dependencies": {
"assertion-error": "^1.0.2",
"aws-lambda-mock-context": "^3.0.1",
"aws-sdk-mock": "^1.7.0",
"uuid": "^3.0.1"
},
"optionalDependencies": {
"i18next": "^7.0.0",
"i18next-sprintf-postprocessor": "^0.2.2"
},
"peerDependencies": {
"mocha": "^3.2.0"
},
"bugs": {
"url": "https://github.com/BrianMacIntosh/alexa-skill-test-framework/issues",
"email": "[email protected]"
},
"repository": "BrianMacIntosh/alexa-skill-test-framework",
"devDependencies": {
"alexa-sdk": "^1.0.10",
"ask-sdk": "^2.0.0",
"eslint": "^3.0.0",
"mocha": "^3.2.0"
}
}