-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ttyrec",
"version": "0.0.27",
"private": false,
"author": "Patrick Debois <patrick.debois@jedi.be>",
"description": "Native javascript Ttyrec file encoder/decoder using streams",
"scripts": {
"test": "grunt test"
},
"main": "./lib/ttyrec.js",
"bin": {
"ttyrec": "./bin/ttyrec",
"ttyplay": "./bin/ttyplay",
"ttytime": "./bin/ttytime",
"ttyrec++": "./bin/ttyrec++"
},
"repository": {
"type": "git",
"url": "https://github.com/jedi4ever/ttyrec.js.git"
},
"keywords": [
"terminal",
"ttyrec",
"ttyplay",
"vt100",
"term",
"ttyrec++",
"termrec",
"tty",
"nethack"
],
"dependencies": {
"pty.js": "~0.2.3",
"async": "~0.2.9",
"minimist": "0.0.5",
"shell-quote": "~1.4.1",
"jsesc": "~0.4.3"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"jscoverage": "*",
"nodewatch": "*",
"assert": "*",
"expect.js": "*",
"should": "0.5.1",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-watch": "~0.4.4",
"grunt-release": "~0.3.5",
"grunt-html": "~0.3.3",
"grunt-readme-generator": "~0.3.41",
"grunt-contrib-clean": "~0.5.0",
"grunt-jsdoc": "~0.4.0",
"grunt-gh-pages": "~0.7.1",
"grunt-mocha-test": "~0.8.1",
"grunt-browserify": "~1.3.0",
"blanket": "~1.1.6"
},
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [ 8, 9 ],
"firefox": [ 13 ],
"chrome": [ 20 ],
"safari": [ 5.1 ],
"opera": [ 12 ]
}
},
"license": "MIT",
"engine": {
"node": ">=0.10"
}
}