-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
80 lines (80 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "yandex-dialogs-sdk",
"version": "2.2.0",
"description": "Build your skill for Alice with ease.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"test": "jest",
"dev": "tsc -w --declaration",
"build": "npm-run-all build:*",
"build:rm-dist": "shx rm -rf dist",
"build:tsc": "tsc --declaration",
"version": "npm-run-all version:*",
"version:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version:add-changelog": "git add CHANGELOG.md",
"release": "conventional-github-releaser -p angular",
"deploy": "npm-run-all deploy:*",
"deploy:tsc": "tsc",
"deploy:git-push": "git push --follow-tags origin master",
"deploy:publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fletcherist/yandex-dialogs-sdk.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"tslint"
]
},
"keywords": [
"Alice",
"yandex-dialogs",
"alice",
"alisa",
"skills",
"alice-sdk",
"alice-dialogs",
"yandex-dialogs-sdk"
],
"files": [
"dist"
],
"author": "Phil Romanov (@fletcherist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fletcherist/yandex-dialogs-sdk/issues"
},
"homepage": "https://github.com/fletcherist/yandex-dialogs-sdk#readme",
"dependencies": {
"@types/fast-levenshtein": "0.0.1",
"@types/node-fetch": "^2.1.2",
"fast-levenshtein": "^2.0.6",
"node-fetch": "^2.1.2",
"debug": "^4.1.0"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/jest": "^23.1.3",
"@types/node": "^10.5.1",
"@types/sinon": "^5.0.5",
"conventional-changelog-cli": "^2.0.0",
"conventional-github-releaser": "^3.1.0",
"husky": "^1.1.2",
"jest": "^23.2.0",
"lint-staged": "^7.3.0",
"npm-run-all": "^4.1.3",
"shx": "^0.3.2",
"sinon": "^7.1.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"typescript": "^3.0.1",
"vrsource-tslint-rules": "^5.8.2"
}
}