This repository was archived by the owner on Feb 7, 2021. It is now read-only.
forked from chjj/pty.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "partty",
"title": "ParTTY",
"description": "Pseudo terminals for Node.js, with smart defaults",
"version": "0.5.6",
"author": {
"name": "James M. Greene",
"email": "james.m.greene@gmail.com",
"url": "http://greene.io/"
},
"contributors": [
{
"name": "Christopher Jeffrey"
},
{
"name": "Peter Sunde"
}
],
"main": "./index.js",
"repository": "git://github.com/JamesMGreene/node-partty.git",
"homepage": "https://github.com/JamesMGreene/node-partty",
"bugs": {
"url": "https://github.com/JamesMGreene/node-partty/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"pty",
"tty",
"terminal",
"pseudo",
"pseudo terminal",
"forkpty",
"forkpty(3)"
],
"scripts": {
"preinstall": "( node -e \"process.exit(process.platform === 'win32' ? 0 : 1);\" && (pushd .git 2>NUL && popd || git init) && git submodule update --init --recursive ) || echo \"Submodule is not required as you are not running on Windows.\"",
"install": "node-gyp rebuild",
"test": "grunt travis --verbose"
},
"dependencies": {
"extend": "~1.3.0",
"nan": "~1.8.4"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.11.2",
"grunt-mocha-cli": "~1.13.0"
}
}