-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.89 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
{
"name": "vk-chat-bot",
"version": "16.0.0",
"description": "Package for easy creation of chat bots for VK communities (uses Callback API).",
"keywords": [
"api",
"bot",
"callback",
"chat",
"community",
"conversation",
"es6",
"group",
"message",
"sdk",
"vk"
],
"homepage": "https://u32i64.github.io/vk-chat-bot",
"bugs": "https://github.com/u32i64/vk-chat-bot/issues",
"repository": {
"type": "git",
"url": "https://github.com/u32i64/vk-chat-bot.git"
},
"license": "MIT",
"author": {
"name": "Artem Varaksa (u32i64)",
"email": "[email protected]",
"url": "https://u32i64.github.io"
},
"files": [
"dist/**/*",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"fix": "eslint --fix src/**/*",
"prepare": "gulp && touch ./docs/.nojekyll"
},
"dependencies": {
"chalk": "^4.0.0",
"escape-string-regexp": "^4.0.0",
"express": "^4.17.1",
"io-ts": "^2.0.2",
"io-ts-reporters": "^1.0.0",
"fp-ts": "^2.3.1",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^14.0.4",
"@types/request-promise": "^4.1.44",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.3",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-terser": "^1.2.0",
"gulp-typedoc": "^2.2.2",
"gulp-typescript": "^5.0.1",
"pump": "^3.0.0",
"typedoc": "^0.17.0",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=8.0.0"
}
}