-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 976 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
{
"name": "wmctrljs",
"version": "1.2.8",
"description": "wmctrl natif code using n-api",
"main": "dist/index.js",
"scripts": {
"install": "node-gyp-build",
"pre-build": "node-gyp configure",
"build:dev": "node-gyp build --debug && tsc",
"build": "node-gyp build && tsc",
"clean": "node-gyp clean && rm -r dist",
"test": "make -C libwmctrl runtest",
"start": "node dist/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kmynes/wmctrljs.git"
},
"keywords": [
"wmctl",
"n-api",
"native",
"C",
"window",
"Xlib"
],
"author": "kevin.voyer.developpeur@gmail.com",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/Kmynes/wmctrl/issues"
},
"homepage": "https://github.com/Kmynes/wmctrl#readme",
"dependencies": {
"node-addon-api": "^2.0.0",
"node-gyp-build": "^4.2.0"
},
"devDependencies": {
"@types/node": "^13.1.6"
}
}