forked from node-vk-bot-api/node-vk-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 KB
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
{
"name": "node-vk-bot-api",
"version": "1.2.0",
"description": "API for VK bots on long poll.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifot/node-vk-bot-api.git"
},
"keywords": [
"vk",
"bots",
"api",
"vkontakte",
"bot",
"vk",
"api",
"longpoll",
"vk-api",
"vk-app",
"vk-bot",
"vkbot",
"vkontakte-sdk",
"vkontakte-api",
"vkontakte-client",
"vkapi"
],
"author": "Mikhail Semin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bifot/node-vk-bot-api/issues"
},
"homepage": "https://github.com/bifot/node-vk-bot-api#readme",
"dependencies": {
"axios": "^0.17.1"
},
"directories": {
"example": "examples"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
},
"engines": {
"node": ">=8.0.0"
}
}