This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 2.06 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
{
"name": "@alexa-skill-components/checkout",
"version": "0.0.1",
"publisher": "Amazon",
"description": "Alexa skill component to checkout",
"license": "AmznSL-1.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:alexa/skill-components.git",
"directory": "checkout"
},
"types": "dist/index.d.ts",
"files": [
"dist/*",
"interactionModels/*",
"response/*",
"build"
],
"scripts": {
"clean": "rm -rf dist && rm -rf build && rm -rf node_modules && rm -rf *.tgz",
"compile-ts": "tsc",
"compile-acdl": "acc",
"compile": "npm run compile-ts && npm run compile-acdl",
"lint": "eslint --fix --max-warnings 0 -c .eslintrc.js 'src/**/*.{ts,tsx}'",
"test": "jest --testTimeout=10000",
"build": "npm run compile && npm pack",
"clean-build": "npm run clean && npm install && npm run build",
"release": "npm run build && npm run lint && npm run test",
"clean-release": "npm run clean && npm install && npm run release"
},
"dependencies": {
"@alexa-skill-components/account-linking": "*",
"@aws-sdk/client-dynamodb": "^3.199.0",
"@aws-sdk/util-dynamodb": "^3.199.0",
"@types/node": "^18.8.4",
"ask-sdk-core": "^2.10.1",
"ask-sdk-model": "^1.18.0",
"lodash": "^4.17.15",
"uuid": "^8.3.2"
},
"devDependencies": {
"@alexa/acdl": "^0.1.13",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.181",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-html-reporter": "3.2.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.0",
"ts-mockito": "2.5.0",
"typescript": "^3.9.9",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"ask": {
"srcDir": "src"
}
}