-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.25 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
{
"version": "1.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/talkyjs/talkyjs-core/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/talkyjs/talkyjs-core.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watchAll",
"test:dev": "tsdx test --watchAll --silent=false --verbose false",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release:ci": "npm run release-it -- --ci",
"release-it": "release-it --config release-it.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"compodoc": "npx compodoc -p tsconfig.json -d docs",
"doc:export": "npm run compodoc && touch ./docs/.nojekyll",
"doc:serve": "npm run compodoc -- -s",
"version": "npm run changelog && git add CHANGELOG.md"
},
"homepage": "https://talkyjs.dev",
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"talkyjs",
"alexa",
"skill"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"tsdx lint --fix",
"git add"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@talkyjs/core",
"author": "Talkyjs Teams",
"module": "dist/core.esm.js",
"devDependencies": {
"@ask-utils/test": "3.11.0",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@release-it/conventional-changelog": "2.0.1",
"conventional-changelog-cli": "2.1.1",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"release-it": "14.8.0",
"tsdx": "0.14.1",
"tslib": "2.2.0",
"typescript": "4.3.2"
},
"dependencies": {
"@ask-utils/core": "^3.9.0",
"@sentry/node": "^6.0.0",
"ask-sdk-core": "^2.8.0",
"ask-sdk-dynamodb-persistence-adapter": "^2.8.0",
"ask-sdk-model": "^1.28.0",
"ask-sdk-s3-persistence-adapter": "^2.8.0",
"moment": "^2.27.0",
"tslog": "^3.0.0"
}
}