forked from chjj/pty.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 KB
/
package.json
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
53
54
{
"name": "node-pty",
"description": "Fork pseudoterminals in Node.JS",
"author": {
"name": "Daniel Imms"
},
"version": "0.7.2",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/Tyriar/node-pty.git"
},
"files": [
"binding.gyp",
"lib/",
"scripts/",
"src/",
"deps/"
],
"homepage": "https://github.com/Tyriar/node-pty",
"bugs": {
"url": "https://github.com/Tyriar/node-pty/issues"
},
"keywords": [
"pty",
"tty",
"terminal",
"pseudoterminal",
"forkpty",
"openpty"
],
"scripts": {
"tsc": "tsc",
"tslint": "tslint src/**/*.ts",
"install": "node scripts/install.js",
"postinstall": "node scripts/post-install.js",
"test": "cross-env NODE_ENV=test mocha -R spec lib/*.test.js",
"prepublish": "npm run tsc"
},
"dependencies": {
"nan": "^2.6.2"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.58",
"cross-env": "^3.2.4",
"mocha": "^3.1.2",
"pollUntil": "^1.0.3",
"tslint": "^4.3.1",
"typescript": "^2.1.4"
}
}