-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 930 Bytes
/
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
{
"name": "sign-check",
"version": "2.2.3",
"description": "Check specified path sign with native current OS signing tools.",
"main": "lib/index.js",
"keywords": [
"sign",
"signtool",
"check",
"utility",
"codesign",
"verify",
"signature",
"certificate",
"security",
"verification"
],
"repository": {
"type": "git",
"url": "https://github.com/kami4ka/SignCheck.git"
},
"scripts": {
"test": "jest --no-cache --bail --verbose"
},
"dependencies": {},
"devDependencies": {
"jest-cli": "^13.2.3"
},
"author": "Oleg Kulyk, Shevchenko Tolik, Ihor Skliar",
"license": "MIT",
"bugs": {
"url": "https://github.com/kami4ka/SignCheck/issues"
},
"engines": {
"node": ">=4.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"lib/index.js": true
}
},
"bin": {
"sign-check": "./lib/cli.js"
}
}