-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "win-version-info",
"version": "6.0.1",
"description": "Windows-only native addon to read version info from executables",
"license": "MIT",
"main": "index.js",
"bin": {
"win-version-info": "bin.js",
"version-info": "bin.js"
},
"author": "Vincent Weevers",
"files": [
"bin.js",
"index.js",
"skip.js",
"binding.gyp",
"src",
"deps",
"prebuilds",
"CHANGELOG.md",
"UPGRADING.md"
],
"scripts": {
"test": "standard && hallmark && tape test/*-test.js",
"test-prebuild": "cross-env PREBUILDS_ONLY=1 npm t",
"hallmark": "hallmark --fix",
"install": "node skip.js || node-gyp-build",
"rebuild": "npm run install --build-from-source",
"prebuild": "prebuildify -t 18.3.0 --napi --strip",
"download-prebuilds": "prebuildify-ci download"
},
"dependencies": {
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.3.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"hallmark": "^4.0.0",
"node-gyp": "^9.0.0",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.5",
"standard": "^17.0.0",
"tape": "^5.5.3",
"win-dummy-exe": "0.0.1"
},
"keywords": [
"exe",
"executable",
"productname",
"productversion",
"version",
"versioninfo",
"windows"
],
"engines": {
"node": ">=14"
},
"gypfile": true,
"repository": "vweevers/win-version-info",
"bugs": "https://github.com/vweevers/win-version-info/issues",
"homepage": "https://github.com/vweevers/win-version-info"
}