forked from robert-harbison/xterm-for-react
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
109 lines (109 loc) · 2.89 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
103
104
105
106
107
108
109
{
"name": "xterm-for-react",
"version": "1.0.2",
"description": "A React wrapper made for XTerm.js",
"main": "dist/bundle.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.config.js",
"clean:start": "clean && start",
"clean": "rimraf dist",
"build:dev": "npm run clean && webpack --config webpack.dev.config.js",
"build:prod": "npm run clean && webpack --config webpack.prod.config.js",
"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",
"peerDependencies": {
"react": "16 - 17",
"react-dom": "16 - 17"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@purtuga/esm-webpack-plugin": "^1.2.1",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"canvas": "^2.6.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"husky": "^4.2.5",
"image-webpack-loader": "^6.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^3.4.1",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.3",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"files": [
"dist"
],
"browserslist": [
"last 2 version",
">1%",
"not dead"
],
"dependencies": {
"prop-types": "^15.7.2",
"xterm": "^4.5.0"
}
}