node-x11/package.json
Antti Korpi fd09ef9848 Nail devDependencies to specific version
This documents what versions it's supposed to work with, and reduces
potential future confusion if contributors accidentally work with
different tool versions.
2018-01-23 21:59:21 +01:00

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"
}
}