-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "ask-community-decorators",
"version": "0.0.9",
"description": "TypeScript decorators for Alexa projects built with the ASK SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register ./test/spec/*.spec.ts",
"cover": "istanbul cover node_modules/mocha/bin/_mocha ./dist/test/spec/*.spec.js -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ask-community/ask-community-decorators.git"
},
"keywords": [
"ask",
"alexa",
"TypeScript",
"decorators"
],
"author": "Mark Tucker",
"license": "ISC",
"bugs": {
"url": "https://github.com/ask-community/ask-community-decorators/issues"
},
"homepage": "https://github.com/ask-community/ask-community-decorators#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"ask-sdk": "^2.3.0",
"ask-sdk-core": "^2.3.0",
"ask-sdk-model": "^1.9.0",
"ask-sdk-runtime": "^2.2.0"
}
}