node-x11/package.json
Santiago Gimeno c1efb0c840 Cache atoms to avoid redundant requests
- Once cached we really don't need to send InternAtom and AtonName requests, so
  we bypass them.
- Add atom_names property to XClient: it's basically the atoms object property
  reversed. It'll be used to cache the atom names.
- Add some tests.
- Issue #22.
2013-02-28 14:43:26 +01:00

29 lines
870 B
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" : "0.1.3"
, "maintainers" :
[ { "name": "Andrey Sidorov"
, "email": "sidoares@yandex.ru"
}
]
, "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": {
"mocha": "*",
"should": "*",
"sax": "*",
"async": "*",
"sinon": "*"
}
, "scripts": {
"test": "node test-runner.js",
"prepublish" : "npm prune"
}
}