forked from jonmbake/react-terminal-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "react-terminal-ui",
"version": "1.2.0",
"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"
},
"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",
"dependencies": {},
"devDependencies": {
"@testing-library/react": "^10.4.9",
"@types/jest": "^27.0.2",
"@types/react": "^16.14.15",
"@types/react-dom": "^16.9.14",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^27.2.1",
"ts-jest": "^27.1.4",
"typescript": "^3.9.10"
},
"peerDependencies": {
"react": ">16.13.0",
"react-dom": ">16.13.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"preset": "ts-jest",
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coverageDirectory": "docs/coverage"
}
}