2018-12-11 23:26:24 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/inspector-monitor-trace-tab",
|
2021-11-06 20:44:49 +03:00
|
|
|
"version": "0.2.3",
|
2018-12-11 23:26:24 +03:00
|
|
|
"description": "Submonitor for Redux DevTools inspector to show stack traces.",
|
2020-10-04 07:11:22 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab",
|
2020-09-29 16:37:13 +03:00
|
|
|
"license": "MIT",
|
2018-12-11 23:26:24 +03:00
|
|
|
"author": "Mark Erikson <mark@isquaredsoftware.com>",
|
|
|
|
"contributors": [
|
|
|
|
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
2020-09-29 16:37:13 +03:00
|
|
|
"main": "lib/StackTraceTab.js",
|
|
|
|
"types": "lib/StackTraceTab.d.ts",
|
|
|
|
"repository": "https://github.com/reduxjs/redux-devtools",
|
2018-12-11 23:26:24 +03:00
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
2020-09-29 16:37:13 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
2018-12-11 23:26:24 +03:00
|
|
|
"clean": "rimraf lib",
|
2020-09-29 16:37:13 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
2020-09-29 16:37:13 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/code-frame": "^7.16.0",
|
2021-11-10 17:32:42 +03:00
|
|
|
"@babel/runtime": "^7.16.3",
|
2021-12-08 07:11:07 +03:00
|
|
|
"@types/chrome": "^0.0.168",
|
2021-10-21 07:26:47 +03:00
|
|
|
"anser": "^2.1.0",
|
2021-08-29 19:20:20 +03:00
|
|
|
"html-entities": "^2.3.2",
|
2021-10-22 03:43:15 +03:00
|
|
|
"path-browserify": "^1.0.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0",
|
|
|
|
"source-map": "^0.5.7"
|
2018-12-11 23:26:24 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/cli": "^7.16.0",
|
|
|
|
"@babel/core": "^7.16.0",
|
2021-11-22 07:02:21 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
|
|
"@babel/preset-env": "^7.16.4",
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/preset-react": "^7.16.0",
|
|
|
|
"@babel/preset-typescript": "^7.16.0",
|
2021-11-06 20:44:49 +03:00
|
|
|
"@redux-devtools/core": "^3.9.1",
|
|
|
|
"@redux-devtools/inspector-monitor": "^1.0.1",
|
2021-10-22 03:43:15 +03:00
|
|
|
"@testing-library/react": "^12.1.2",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/babel__code-frame": "^7.0.3",
|
2021-06-19 04:47:26 +03:00
|
|
|
"@types/html-entities": "^1.3.4",
|
2021-11-22 07:02:21 +03:00
|
|
|
"@types/jest": "^27.0.3",
|
2021-12-04 22:04:59 +03:00
|
|
|
"@types/react": "^17.0.37",
|
2020-09-29 16:37:13 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/source-map": "0.5.2",
|
2021-12-08 07:11:07 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
|
|
"@typescript-eslint/parser": "^5.6.0",
|
|
|
|
"eslint": "^8.4.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-12-04 22:04:59 +03:00
|
|
|
"eslint-plugin-jest": "^25.3.0",
|
2021-11-22 07:02:21 +03:00
|
|
|
"eslint-plugin-react": "^7.27.1",
|
2021-11-10 17:32:42 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2021-12-04 22:04:59 +03:00
|
|
|
"jest": "^27.4.3",
|
2021-10-22 19:11:42 +03:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-test-renderer": "^17.0.2",
|
2021-11-01 16:59:32 +03:00
|
|
|
"redux": "^4.1.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2021-12-08 07:11:07 +03:00
|
|
|
"ts-jest": "^27.1.0",
|
2021-12-08 08:02:22 +03:00
|
|
|
"typescript": "~4.5.2"
|
2018-12-11 23:26:24 +03:00
|
|
|
},
|
2020-09-29 16:37:13 +03:00
|
|
|
"peerDependencies": {
|
2021-06-11 05:16:29 +03:00
|
|
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
2021-03-06 18:31:16 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
|
|
"react": "^16.3.0 || ^17.0.0",
|
2020-12-21 23:46:28 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2018-12-11 23:26:24 +03:00
|
|
|
}
|
|
|
|
}
|