-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 965 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
{
"name": "browser-fakepty",
"version": "0.0.1",
"description": "A fake pty implementation for in-browser xterm.js usage.",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"watch": "tsc -w",
"lint": "tslint 'src/**/*.ts'",
"start": "webpack-cli && http-server",
"prepublish": "npm run tsc",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
"benchmark": "xterm-benchmark $*"
},
"keywords": [
"pty",
"browser",
"pseudoterminal",
"xterm.js"
],
"author": "",
"license": "MIT",
"dependencies": {
"xterm": "^4.2.0-vscode1"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"chalk": "^3.0.0",
"http-server": "^0.12.0",
"node-pty": "^0.9.0",
"node-termios": "^0.0.13",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}