mirror of
https://github.com/danbulant/node-x11
synced 2026-05-19 04:18:35 +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>"
|
||||
, "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.3.0"
|
||||
, "maintainers" :
|
||||
[ { "name": "Andrey Sidorov"
|
||||
, "email": "sidoares@yandex.ru"
|
||||
{
|
||||
"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.3.1",
|
||||
"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": {
|
||||
],
|
||||
"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": {
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test-runner.js",
|
||||
"prepublish" : "npm prune"
|
||||
"prepublish": "npm prune"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue