-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.26 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": "windows-api-show-window",
"version": "0.2.0",
"description": "Call ShowWindow from node via ffi-napi",
"main": "src/index.js",
"scripts": {
"build": "tsc --newline lf",
"pretest": "npm run build",
"test": "echo Run manual test with ctrl + r: node.exe [path-to-repo]/test/index.js",
"prepublish": "in-publish && npm test || not-in-publish"
},
"files": [
"src",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oledid-js/windows-api-show-window.git"
},
"keywords": [
"window",
"windows api",
"show window",
"hide window"
],
"author": "Ole Morten Didriksen <[email protected]> (https://github.com/oledid)",
"license": "MIT",
"contributors": [
"Ole Morten Didriksen <[email protected]> (https://github.com/oledid)",
"bisubus (https://github.com/bisubus)"
],
"bugs": {
"url": "https://github.com/oledid-js/windows-api-show-window/issues"
},
"homepage": "https://github.com/oledid-js/windows-api-show-window#readme",
"dependencies": {
"ffi-napi": "^3.0.1",
"ref-napi": "^2.0.1"
},
"devDependencies": {
"@types/ffi-napi": "2.4.3",
"@types/node": "^6.0.0",
"@types/ref-napi": "1.4.1",
"in-publish": "^2.0.0",
"typescript": "^2.1.6"
}
}