This repository was archived by the owner on Apr 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.63 KB
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
{
"name": "ask-sdk-addon",
"version": "1.6.0",
"description": "Addons for Alexa Skill Kit SDK v2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf coverage dist doc",
"compile": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "nyc -x tst -e .ts --temp-directory 'coverage/nyc-output' -r html -r text-summary -r cobertura _mocha --require ts-node/register 'tst/**/*.spec.ts' --reporter nyan",
"doc": "typedoc --excludeExternals --mode file --out doc lib/",
"build": "npm-run-all clean compile lint test doc",
"preversion": "npm-run-all clean lint test",
"version": "npm run build && git add -A",
"postversion": "git push && npm publish"
},
"keywords": [
"Alexa",
"ASK",
"Skill"
],
"author": "Taimos GmbH",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/taimos/ask-sdk-addon.git"
},
"peerDependencies": {
"ask-sdk-core": "^2.7.0"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.5.3",
"@types/sinon": "^7.5.1",
"ask-sdk-core": "^2.7.0",
"ask-sdk-model": "^1.25.1",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rimraf": "^3.0.1",
"sinon": "^8.1.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typedoc": "^0.16.9",
"typescript": "^3.7.5"
}
}