-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "win-control",
"version": "0.3.1",
"description": "Windows manipulation made easy for node.js",
"author": "Francisco Padillo <fpadillo@nosolosoftware.es>",
"license": "MIT",
"main": "src/js/index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"pack": "node-pre-gyp package"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"node-pre-gyp": "^0.12.0"
},
"devDependencies": {
"node-pre-gyp-github": "^1.4.3"
},
"peerDependencies": {
"node-gyp": "7.x"
},
"peerDependenciesMeta": {
"node-gyp": {
"optional": true
}
},
"optionalDependencies": {
"node-gyp": "7.x"
},
"repository": {
"type": "git",
"url": "https://github.com/nosolosoftware/win-control.git"
},
"os": [
"win32"
],
"binary": {
"module_name": "wincontrol",
"module_path": "./lib/binding/",
"host": "https://github.com/nosolosoftware/win-control/releases/download/",
"remote_path": "{version}"
},
"files": [
"binding.gyp",
"src"
]
}