forked from node-vk-bot-api/node-vk-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.4 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
{
"name": "node-vk-bot-api",
"version": "3.4.0",
"description": "🤖 VK bot framework for Node.js, based on Bots Long Poll API and Callback API",
"main": "lib/index.js",
"scripts": {
"test": "mocha -r dotenv/config --exit --timeout 5000",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-vk-bot-api/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",
"webhooks",
"callback api",
"callback"
],
"author": "Mikhail Semin",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-vk-bot-api/node-vk-bot-api/issues"
},
"homepage": "https://github.com/node-vk-bot-api/node-vk-bot-api#readme",
"dependencies": {
"axios": "^0.21.1"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@bifot/eslint-config": "^1.0.2",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^4.3.8",
"mocha": "^8.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}