-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
140 lines (140 loc) · 4.83 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "ask-sdk-controls",
"version": "0.9.2",
"description": "Skill-building framework & library for Alexa SDK",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc && npm run copyTestSupportFiles && npm run lint",
"copyTestSupportFiles": "[ -d dist/test/mock ] || mkdir dist/test/mock && cp test/mock/* dist/test/mock/",
"watch": "tsc-watch --onSuccess 'npm run copyTestSupportFiles'",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
"format-check": "prettier --check \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
"format-overwrite": "prettier -w \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
"test": "cross-env TS_NODE_FILES=true mocha -r ts-node/register \"./test/**/*.spec.ts\" \"./demo/**/test/**/*.spec.ts\"",
"test-all": "cross-env TS_NODE_FILES=true mocha --forbid-only -r ts-node/register \"./test/**/*.spec.ts\" \"./demo/**/test/**/*.spec.ts\"",
"coverage": "nyc --cache npm run test-all && nyc report --reporter=html && echo HTML report generated at coverage/index.html",
"clean": "rm -rf ./dist",
"reinstall": "rm -rf ./node_modules && npm install",
"rebuild": "npm run clean && npm run build",
"docs": "rm -rf ./dist/api_docs && typedoc --out dist/api_docs src",
"pre-release": "standard-version",
"release": "npm run coverage && npm run lint && npm run format-check"
},
"dependencies": {
"ask-sdk-core": "^2.12.1",
"ask-sdk-local-debug": "^1.1.0",
"ask-sdk-model": "^1.35.1",
"ask-smapi-model": "^1.15.3",
"chai": "^4.2.0",
"debug": "^4.1.1",
"i18next": "^19.9.2",
"lodash": "^4.17.15",
"tslib": "^2.0.0"
},
"peerDependencies": {
"ask-sdk-core": "^2.12.1",
"ask-sdk-local-debug": "^1.1.0",
"ask-sdk-model": "^1.35.1",
"ask-smapi-model": "^1.15.3",
"chai": "^4.2.0",
"debug": "^4.1.1",
"i18next": "^19.9.2",
"lodash": "^4.17.15",
"tslib": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^12.1.4",
"@types/chai": "^4.2.8",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.14",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-tsdoc": "^0.2.5",
"highlight.js": ">=10.4.1",
"husky": "^4.2.5",
"marked": "^4.0.12",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.1.1",
"sinon": "^9.0.1",
"source-map-support": "^0.5.19",
"standard-version": "^9.0.0",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.3",
"typedoc": "^0.17.6",
"typedoc-neo-theme": "^1.0.8",
"typescript": "^3.9.10"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && npm run lint && npm run format-check",
"pre-push": "npm run test-all"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feat_",
"section": "Feature work - not included in Changelog",
"hidden": true
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "fix_",
"section": "Bug Fixes - not included in Changelog",
"hidden": true
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "docs_",
"section": "Doc work - not included in Changelog",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
},
{
"type": "revert",
"hidden": true
}
]
},
"author": "Amazon Alexa Skills Kit SDK team",
"repository": "github:alexa/ask-sdk-controls",
"license": "Apache-2.0"
}