-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.75 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
{
"name": "@andypf/json-viewer",
"version": "2.4.0",
"description": "A javascript library to visualize json nicely",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"keywords": [
"react-json",
"react-json-tree",
"json-react",
"json",
"browser",
"pretty",
"react",
"JSON",
"viewer",
"visualization",
"web",
"js",
"javascript",
"shadow",
"component",
"fast",
"small",
"32KB"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production node esbuild.config.mjs",
"start": "NODE_ENV=development node esbuild.config.mjs --watch",
"check-format": "prettier --check {src,tests,doc}**/*.{js,json,css,md,html}",
"format": "prettier --write {src,tests,doc}**/*.{js,json,css,md,html}",
"lint": "eslint"
},
"author": "Andreas Pfau",
"license": "MIT",
"packedSize": 32.3,
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@eslint/js": "^9.9.1",
"babel-jest": "^29.7.0",
"esbuild": "^0.25.0",
"eslint": "^10.0.3",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.31",
"postcss-minify": "^1.1.0",
"prettier": "^3.3.3",
"react": "^18.2.0"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andypf/json-viewer.git"
},
"bugs": {
"url": "https://github.com/andypf/json-viewer/issues"
},
"homepage": "https://github.com/andypf/json-viewer#readme",
"pnpm": {
"overrides": {
"minimatch": "10.2.4",
"flatted": ">=3.4.2",
"js-yaml": ">=3.14.2"
}
}
}