-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 KB
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
{
"name": "react-terminal-ui",
"version": "1.4.0",
"type": "module",
"description": "A terminal react component with support for light and dark modes.",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build/**"
],
"scripts": {
"build": "./bin/build.sh",
"install-peers": "install-peers -f",
"test": "jest",
"lint": "eslint src demo tests --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonmbake/react-terminal-ui.git"
},
"keywords": [
"terminal",
"react",
"component",
"light",
"dark"
],
"author": "Jon Bake",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonmbake/react-terminal-ui/issues"
},
"homepage": "https://github.com/jonmbake/react-terminal-ui#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"preset": "ts-jest",
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coverageDirectory": "docs/coverage"
}
}