This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "easyvk",
"version": "2.8.2",
"description": "Functional library for support VKontake API (ВКонтакте API) on node.js",
"author": "ciricc",
"license": "MIT",
"bugs": "https://github.com/ciricc/easyvk/issues",
"homepage": "https://ciricc.github.io/",
"main": "lib/bundle.js",
"scripts": {
"test:jasmine": "jasmine JASMINE_CONFIG_PATH=jasmine.json CLIENT_ID=process.env.CLIENT_ID CLIENT_SECRET=process.env.CLIENT_SECRET",
"test:eslint": "eslint src",
"test": "npm run test:eslint && npm run test:jasmine",
"build": "rollup -c --environment BUILD:production"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciricc/easyvk.git"
},
"keywords": [
"vkapi",
"vk",
"sdk",
"streaming-api",
"longpolling",
"api",
"vkontakte"
],
"dependencies": {
"body-parser": "^1.18.3",
"encoding": "^0.1.12",
"express": "^4.16.4",
"form-data": "^3.0.0",
"node-fetch-cookies": "^1.3.5",
"proxy-agent": "^3.0.3",
"tough-cookie": "^3.0.1",
"tough-cookie-file-store": "^1.2.0",
"ws": "^6.1.3"
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-lint-emphasis-marker",
"remark-lint-strong-marker",
"remark-stringify"
]
},
"files": [
"bundle.js"
],
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-google": "^0.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jasmine": "^3.3.1",
"remark-lint-emphasis-marker": "^1.0.2",
"remark-lint-strong-marker": "^1.0.2",
"remark-stringify": "^6.0.4"
}
}