-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
54 lines (54 loc) · 1.08 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
{
"name": "x11",
"author": "Andrey Sidorov <[email protected]>",
"description": "A pure node.js JavaScript client implementing X Window (X11) protocol and extensions.",
"keywords": [
"X Window",
"ui",
"gui",
"widgets",
"desktop",
"XWindow",
"X"
],
"homepage": "https://github.com/sidorares/node-x11",
"version": "2.3.0",
"maintainers": [
{
"name": "Andrey Sidorov",
"email": "[email protected]"
},
{
"name": "Santiago Gimeno",
"email": "[email protected]"
}
],
"bugs": {
"url": "http://github.com/sidorares/node-x11/issues"
},
"licenses": [
{
"type": "MIT"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/sidorares/node-x11.git"
},
"main": "./lib",
"engines": {
"node": "*"
},
"devDependencies": {
"async": "^3.0.1",
"mocha": "^7.1.2",
"sax": "^1.2.4",
"should": "^13.2.1",
"sinon": "^7.2.5"
},
"scripts": {
"test": "node test-runner.js",
"prepublish": "npm prune"
},
"dependencies": {}
}