-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@vkontakte/vk-miniapps-deploy",
"version": "0.1.9",
"description": "Deploy to VK Mini Apps hosting with one simple command",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "./bin/vk-miniapps-deploy",
"lint:eslint": "eslint ./index.js",
"lint:prettier": "prettier --check ./index.js",
"lint:fix": "eslint ./index.js --fix",
"lint:ci": "yarn lint:eslint && yarn lint:prettier"
},
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"author": {
"name": "VK",
"url": "https://vk.com"
},
"contributors": [
{
"name": "Ilya Egorov",
"url": "https://vk.com/mobyman"
},
{
"name": "Gleb Vorontsov",
"email": "[email protected]",
"url": "https://vk.com/boy"
}
],
"bin": "./bin/vk-miniapps-deploy",
"repository": {
"type": "git",
"url": "https://github.com/vkcom/vk-miniapps-deploy.git"
},
"homepage": "https://github.com/vkcom/vk-miniapps-deploy",
"dependencies": {
"async": "^3.2.0",
"chalk": "^3.0.0",
"configstore": "^5.0.0",
"form-data": "^3.0.0",
"fs-extra": "^8.0.1",
"node-fetch": "^2.6.0",
"prompts": "^2.1.0",
"require-module": "^0.1.0",
"zip-a-folder": "0.0.12"
},
"devDependencies": {
"@vkontakte/eslint-plugin": "^2.0.0",
"@vkontakte/prettier-config": "^0.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^2.7.1"
}
}