mirror of
https://github.com/danbulant/node-x11
synced 2026-05-19 04:18:35 +00:00
This documents what versions it's supposed to work with, and reduces potential future confusion if contributors accidentally work with different tool versions.
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "x11",
|
|
"author": "Andrey Sidorov <sidorares@yandex.ru>",
|
|
"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": "sidoares@yandex.ru"
|
|
},
|
|
{
|
|
"name": "Santiago Gimeno",
|
|
"email": "santiago.gimeno@gmail.com"
|
|
}
|
|
],
|
|
"bugs": {
|
|
"url": "http://github.com/sidorares/node-x11/issues"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/sidorares/node-x11.git"
|
|
},
|
|
"main": "./lib",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^2.6.0",
|
|
"mocha": "^5.0.0",
|
|
"sax": "^1.2.4",
|
|
"should": "^13.2.1",
|
|
"sinon": "^4.2.1"
|
|
},
|
|
"scripts": {
|
|
"test": "node test-runner.js",
|
|
"prepublish": "npm prune"
|
|
},
|
|
"dependencies": {
|
|
"os-homedir": "^1.0.1"
|
|
}
|
|
}
|