-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "react-xterm",
"version": "3.6.0",
"description": "react wrapper for xterm.js",
"main": "./dist/react-xterm.js",
"types": "./dist/react-xterm.d.ts",
"scripts": {
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --config ./webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/farfromrefug/react-xterm"
},
"author": "Martin Guillon",
"license": "ISC",
"peerDependencies": {
"react": "^16.3.1"
},
"dependencies": {
"classnames": "^2.2.6",
"xterm": "3.6.0",
"chai": "^4.2.0",
"express-ws": "^4.0.0",
"node-pty": "^0.9.0"
},
"devDependencies": {
"@types/node": "^7.0.60",
"@types/react": "^16.3.10",
"@types/xterm": "^3.0.0",
"lodash.throttle": "^4.1.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-resizable": "^1.7.5",
"ts-loader": "^4.2.0",
"typescript": "^2.8.1",
"webpack": "^4.5.0"
}
}