-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "@andypf/json-viewer",
"version": "2.1.6",
"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.17.18",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.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"
}