Files
documentation/node_modules/react-json-view-lite/package.json
2024-03-22 03:47:51 +05:30

104 lines
3.2 KiB
JSON

{
"name": "react-json-view-lite",
"version": "1.3.0",
"description": "JSON viewer component for React focused on performance for large volume input while still providing few customiziation features",
"homepage": "https://github.com/AnyRoad/react-json-view-lite",
"author": "AnyRoad",
"license": "MIT",
"keywords": [
"react",
"json",
"component",
"view",
"json-view",
"json-tree",
"lite"
],
"repository": "AnyRoad/react-json-view-lite",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@storybook/addon-actions": "^7.4.0",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addons": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "0.2.0",
"@storybook/theming": "^7.4.0",
"@testing-library/jest-dom": "6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "29.5.4",
"@types/node": "18.8.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-standard": "5.0.0",
"gh-pages": "6.0.0",
"microbundle-crl": "0.13.11",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"storybook": "^7.4.0",
"storybook-css-modules": "^1.0.8",
"typescript": "5.2.2"
},
"files": [
"dist"
],
"jest": {
"collectCoverageFrom": [
"src/*.{ts,tsx}",
"!<rootDir>/node_modules/"
]
},
"packageManager": "yarn@3.6.3"
}