-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.17 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
{
"name": "vkminiapps-sign",
"version": "2.0.1",
"description": "Module to verify signature in VK Mini Apps",
"main": "vkminiapps-sign.js",
"type": "module",
"scripts": {
"test": "mocha *.test.js",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mahnunchik/vkminiapps-sign.git"
},
"keywords": [
"vk",
"vkontakte",
"vkminiapps",
"vkapps",
"sign",
"signature"
],
"author": "Evgeny Vlasenko <mahnunchik+vkminiapps@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahnunchik/vkminiapps-sign/issues"
},
"homepage": "https://github.com/mahnunchik/vkminiapps-sign#readme",
"devDependencies": {
"eslint": "^8.23.1",
"mocha": "^10.0.0"
},
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2022,
"requireConfigFile": false,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
},
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"mocha": true
}
}
]
}
}