-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1021 Bytes
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
{
"name": "@paulll/vklib",
"version": "2.4.4",
"description": "fast vk api library",
"main": "lib/vkapi.js",
"types": "lib/vkapi.d.ts",
"scripts": {
"build": "tsc && npx browserify -p tinyify lib/vkapi.js -o lib/vkapi.bundle.js",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulll/node-vkapi.git"
},
"keywords": [
"vk",
"api"
],
"author": "paulll",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulll/node-vkapi/issues"
},
"homepage": "https://github.com/paulll/node-vkapi#readme",
"dependencies": {
"bluebird": "^3.4.6",
"fastpriorityqueue": "latest",
"node-fetch": "^2.6.0",
"promise-nodeify": "^3.0.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.2",
"browserify": "^16.5.0",
"jest": "^24.8.0",
"tinyify": "^2.5.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"files": [
"/lib"
]
}