-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "json-viewer",
"version": "1.0.0",
"description": "Online JSON Viewer, JSON Beautifier to beautify and tree view of JSON data - It works as JSON Pretty Print to pretty print JSON data.",
"private": true,
"scripts": {
"start": "kkt start",
"build": "kkt build",
"test": "kkt test --env=jsdom",
"coverage": "kkt test --env=jsdom --coverage --bail",
"map": "source-map-explorer build/static/js/*.js --html build/website-result.html"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/json-viewer.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"@uiw/react-copy-to-clipboard": "~4.21.0",
"@uiw/react-github-corners": "~1.5.3",
"@uiw/react-json-view": "^1.0.0",
"@uiw/react-split": "~5.8.7",
"@uiw/react-codemirror": "^4.11.5",
"@codemirror/lang-json": "^6.0.1",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@kkt/less-modules": "^7.5.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"source-map-explorer": "~2.5.2",
"kkt": "^7.5.1"
},
"jest": {
"coverageReporters": [
"lcov",
"json-summary"
],
"testMatch": [
"<rootDir>/src/**/*.test.{ts,tsx}"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
],
"collectCoverageFrom": [
"<rootDir>/src/app/*.{tsx,ts}"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}