forked from Estradiaz/bringToFront
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 846 Bytes
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
{
"name": "@evgenys91/bring-to-front",
"version": "0.0.1",
"description": "brings window with pid to foreground",
"main": "index.js",
"scripts": {
"pretest": "node-gyp rebuild",
"test": "jest --watchAll",
"build": "node-gyp build",
"clean": "node-gyp clean && node-gyp configure",
"demo": "node sample.js",
"build-src": "tsc -p ./tsconfig.json"
},
"files": [
"binding.gyp",
"index.d.ts",
"index.js",
"src/index.cc",
"src/win32/pidToFront.cc",
"src/win32/pidToFront.h"
],
"keywords": [],
"author": "",
"license": "MIT",
"gypfile": true,
"dependencies": {
"nan": "^2.18.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"bindings": "^1.5.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}