mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
a0472bdeaa
Co-authored-by: Renovate Bot <bot@renovateapp.com>
76 lines
2.5 KiB
JSON
76 lines
2.5 KiB
JSON
{
|
|
"name": "@redux-devtools/inspector-monitor-trace-tab",
|
|
"version": "0.2.2",
|
|
"description": "Submonitor for Redux DevTools inspector to show stack traces.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab",
|
|
"license": "MIT",
|
|
"author": "Mark Erikson <mark@isquaredsoftware.com>",
|
|
"contributors": [
|
|
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
|
],
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/StackTraceTab.js",
|
|
"types": "lib/StackTraceTab.d.ts",
|
|
"repository": "https://github.com/reduxjs/redux-devtools",
|
|
"scripts": {
|
|
"build": "yarn run build:types && yarn run build:js",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "^7.15.8",
|
|
"@babel/runtime": "^7.15.4",
|
|
"@types/chrome": "^0.0.159",
|
|
"anser": "^2.1.0",
|
|
"html-entities": "^2.3.2",
|
|
"path-browserify": "^1.0.1",
|
|
"redux-devtools-themes": "^1.0.0",
|
|
"source-map": "^0.5.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.15.7",
|
|
"@babel/core": "^7.15.8",
|
|
"@babel/plugin-transform-runtime": "^7.15.8",
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@redux-devtools/core": "^3.9.0",
|
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
|
"@testing-library/react": "^12.1.2",
|
|
"@types/babel__code-frame": "^7.0.3",
|
|
"@types/html-entities": "^1.3.4",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/react": "^17.0.31",
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
|
"@types/source-map": "0.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
"@typescript-eslint/parser": "^5.1.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^25.2.2",
|
|
"eslint-plugin-react": "^7.26.1",
|
|
"jest": "^27.3.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-test-renderer": "^17.0.2",
|
|
"redux": "^4.1.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "~4.4.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"react": "^16.3.0 || ^17.0.0",
|
|
"redux": "^3.4.0 || ^4.0.0"
|
|
}
|
|
}
|