mirror of
https://github.com/danbulant/node-x11
synced 2026-05-24 12:35:39 +00:00
0.3.1
This commit is contained in:
parent
0f17494352
commit
092f8dbf80
1 changed files with 40 additions and 20 deletions
60
package.json
60
package.json
|
|
@ -1,29 +1,49 @@
|
||||||
{ "name" : "x11"
|
{
|
||||||
, "author": "Andrey Sidorov <sidorares@yandex.ru>"
|
"name": "x11",
|
||||||
, "description": "A pure node.js JavaScript client implementing X Window (X11) protocol and extensions."
|
"author": "Andrey Sidorov <sidorares@yandex.ru>",
|
||||||
, "keywords": ["X Window", "ui", "gui", "widgets", "desktop", "XWindow", "X"]
|
"description": "A pure node.js JavaScript client implementing X Window (X11) protocol and extensions.",
|
||||||
, "homepage": "https://github.com/sidorares/node-x11"
|
"keywords": [
|
||||||
, "version" : "0.3.0"
|
"X Window",
|
||||||
, "maintainers" :
|
"ui",
|
||||||
[ { "name": "Andrey Sidorov"
|
"gui",
|
||||||
, "email": "sidoares@yandex.ru"
|
"widgets",
|
||||||
|
"desktop",
|
||||||
|
"XWindow",
|
||||||
|
"X"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/sidorares/node-x11",
|
||||||
|
"version": "0.3.1",
|
||||||
|
"maintainers": [
|
||||||
|
{
|
||||||
|
"name": "Andrey Sidorov",
|
||||||
|
"email": "sidoares@yandex.ru"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
, "bugs" : { "url" : "http://github.com/sidorares/node-x11/issues" }
|
"bugs": {
|
||||||
, "licenses" : [ { "type" : "MIT" } ]
|
"url": "http://github.com/sidorares/node-x11/issues"
|
||||||
, "repository" : { "type" : "git", "url" : "http://github.com/sidorares/node-x11.git" }
|
},
|
||||||
|
"licenses": [
|
||||||
, "main" : "./lib"
|
{
|
||||||
, "engines" : { "node" : "*" }
|
"type": "MIT"
|
||||||
, "devDependencies": {
|
}
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "http://github.com/sidorares/node-x11.git"
|
||||||
|
},
|
||||||
|
"main": "./lib",
|
||||||
|
"engines": {
|
||||||
|
"node": "*"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
"mocha": "*",
|
"mocha": "*",
|
||||||
"should": "*",
|
"should": "*",
|
||||||
"sax": "*",
|
"sax": "*",
|
||||||
"async": "*",
|
"async": "*",
|
||||||
"sinon": "*"
|
"sinon": "*"
|
||||||
}
|
},
|
||||||
, "scripts": {
|
"scripts": {
|
||||||
"test": "node test-runner.js",
|
"test": "node test-runner.js",
|
||||||
"prepublish" : "npm prune"
|
"prepublish": "npm prune"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue