]> git.proxmox.com Git - mirror_xterm.js.git/blobdiff - package.json
Stricter check for option existence
[mirror_xterm.js.git] / package.json
index ebd6f807a407310035c6e6030b855aabb3418076..6b667dcc8469fbb967e4cba2275cf7db4cb11464 100644 (file)
@@ -1,19 +1,36 @@
 {
-  "name": "term.js",
-  "description": "A terminal written in javascript",
-  "author": "Christopher Jeffrey",
-  "version": "0.0.2",
-  "main": "./index.js",
-  "preferGlobal": false,
-  "repository": "git://github.com/chjj/term.js.git",
-  "homepage": "https://github.com/chjj/term.js",
-  "bugs": { "url": "https://github.com/chjj/term.js/issues" },
-  "keywords": ["tty", "terminal", "term"],
-  "tags": ["tty", "terminal", "term"],
-  "engines": { "node": ">= 0.8.0" },
+  "name": "xterm",
+  "version": "1.1.3",
+  "ignore": [
+    "demo",
+    "test",
+    ".gitignore"
+  ],
+  "main": "src/xterm.js",
+  "repository": "https://github.com/sourcelair/xterm.js",
+  "license": "MIT",
   "devDependencies": {
-    "express": "3.1.0",
-    "socket.io": "0.9.13",
-    "pty.js": "0.2.3"
+    "babel-core": "6.14.0",
+    "babel-preset-es2015": "6.14.0",
+    "babelify": "^7.3.0",
+    "browserify": "^13.1.0",
+    "chai": "3.5.0",
+    "derequire": "^2.0.3",
+    "docdash": "0.4.0",
+    "exorcist": "^0.4.0",
+    "express": "4.13.4",
+    "express-ws": "2.0.0-rc.1",
+    "glob": "^7.0.5",
+    "jsdoc": "3.4.0",
+    "mocha": "2.5.3",
+    "nodemon": "1.10.2",
+    "pty.js": "0.3.1",
+    "sleep": "^3.0.1"
+  },
+  "scripts": {
+    "start": "nodemon --watch src --watch addons --exec bash -c './bin/build && node demo/app'",
+    "test": "mocha --recursive --compilers js:babel-core/register",
+    "build:docs": "jsdoc -c jsdoc.json",
+    "build": "./bin/build"
   }
 }