-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 892 Bytes
/
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
{
"name": "child_pty",
"version": "3.0.4",
"description": "provides a child_process.spawn()-like interface with pty support.",
"main": "index.js",
"scripts": {
"test": "jshint lib test && mocha"
},
"author": "Enno Boland <eb@s01.de>",
"license": "MIT",
"dependencies": {
"extend": "^3.0.1",
"nan": "^2.8.0"
},
"gypfile": true,
"devDependencies": {
"jshint": "^2.9.5",
"mocha": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/Gottox/child_pty"
},
"keywords": [
"pty",
"tty",
"terminal"
],
"bugs": {
"url": "https://github.com/Gottox/child_pty/issues"
},
"homepage": "https://github.com/Gottox/child_pty",
"jshintConfig": {
"unused": true,
"eqeqeq": true,
"quotmark": true,
"nonew": true,
"indent": true,
"latedef": true,
"noarg": true,
"node": true
}
}