forked from bony2023/react-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.69 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.69 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
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
{
"name": "react-terminal",
"version": "v1.1.0",
"description": "React component that renders a terminal",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/cross-env NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"test": "jest"
},
"files": [
"dist",
"LICENCE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bony2023/react-terminal.git"
},
"keywords": [
"node",
"npm",
"react",
"terminal"
],
"author": "Bony Roopchandani",
"license": "MIT",
"bugs": {
"url": "https://github.com/bony2023/react-terminal/issues"
},
"homepage": "https://github.com/bony2023/react-terminal#readme",
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"npm-install-peers": "^1.2.1",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.14",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/setupTests.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"**/tests/**/?(*.)+(spec|test).[jt]s?(x)"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"prop-types": "^15.7.2",
"react-device-detect": "^1.11.14"
}
}