-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.52 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "x11",
"author": "Andrey Sidorov <andrey.sidorov@gmail.com>",
"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": "4.2.1",
"maintainers": [
{
"name": "Andrey Sidorov",
"email": "andrey.sidorov@gmail.com"
},
{
"name": "Santiago Gimeno",
"email": "santiago.gimeno@gmail.com"
}
],
"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": ">=18"
},
"devDependencies": {
"async": "^3.0.1",
"bunny": "^1.0.1",
"eslint": "^10.7.0",
"mocha": "^11.7.6",
"sax": "^1.2.4",
"should": "^13.2.1",
"sinon": "^22.1.0",
"teapot": "^1.0.0"
},
"scripts": {
"test": "node test-runner.js",
"test:local": "./scripts/test-local.sh",
"test:glx-emu": "mocha test/glx-emu/ --timeout 10000",
"test:xserver": "mocha test/xserver/ --timeout 10000",
"test:bun": "bun test test/bun",
"lint": "eslint .",
"gen:events": "node autogen/generate-events.js",
"gen:replies": "node autogen/generate-replies.js",
"gen:protocol": "npm run gen:events && npm run gen:replies",
"prepublish": "npm prune"
}
}