forked from jaxtonw/xterm-for-react18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.52 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "xterm-for-react",
"version": "1.1.0",
"description": "A React wrapper made for XTerm.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --declaration",
"lint": "eslint --ext=jsx,js,tsx,ts src",
"precommit": "lint-staged && test",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"{src,test}/**/*.{json,css,md}": [
"prettier --config ./.prettierrc --write"
],
"{src,test}/**/*.{js,ts,tsx}": [
"prettier --config ./.prettierrc --write",
"eslint --ext=jsx,js,ts,tsx --fix src"
]
},
"repository": {
"type": "git",
"url": "https://github.com/robert-harbison/xterm-for-react"
},
"keywords": [
"react",
"typescript",
"xterm.js",
"xterm"
],
"author": "Robert Harbison",
"license": "MIT",
"files": [
"dist"
],
"browserslist": [
"last 2 version",
">1%",
"not dead"
],
"dependencies": {
"prop-types": "^15.8.1",
"xterm": "^5.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@cfaester/enzyme-adapter-react-18": "^0.7.0",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.5.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"canvas": "^2.11.2",
"core-js": "^3.30.0",
"css-loader": "^6.7.3",
"enzyme": "^3.11.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"regenerator-runtime": "^0.13.11",
"rimraf": "^4.4.1",
"sinon": "^15.0.3",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4"
},
"overrides": {
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}