node-x11/package.json
Santiago Gimeno e6796ab192 Only execute dpms test when we can
- Add test-runner.js to be able to execute the dpms when these
  conditions are complied:
     1 - DPMS extension is supported.
     2 - DPMS version is 1.1.
     3 - DPMS is capable.
2012-11-25 19:35:07 +01:00

26 lines
809 B
JSON

{ "name" : "x11"
, "author": "Andrey Sidorov <sidorares@yandex.ru>"
, "description": "A pure node.js JavaScript client implementing X Window (X11) protocol."
, "keywords": ["X Window", "ui", "gui", "widgets", "desktop", "XWindow", "X"]
, "homepage": "https://github.com/sidorares/node-x11"
, "version" : "0.0.11"
, "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/x11"
, "engines" : { "node" : "*" }
, "devDependencies": {
"mocha": "*",
"should": "*"
}
, "scripts": {
"test": "node test-runner.js",
"prepublish" : "npm prune"
}
}