2020-08-06 23:39:05 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/serialize",
|
2021-03-06 16:57:19 +03:00
|
|
|
"version": "0.3.0",
|
2020-08-06 23:39:05 +03:00
|
|
|
"description": "Serialize unserializable data and parse it back.",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools"
|
|
|
|
],
|
2020-08-29 07:14:49 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-serialize",
|
2020-08-06 23:39:05 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-08-29 07:14:49 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
2020-08-29 07:14:49 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"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-08-06 23:39:05 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"jsan": "^3.1.13"
|
2020-08-29 07:14:49 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-21 00:49:13 +03:00
|
|
|
"@babel/cli": "^7.15.7",
|
2021-10-11 07:16:48 +03:00
|
|
|
"@babel/core": "^7.15.8",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/jest": "^27.0.2",
|
2021-08-25 07:22:54 +03:00
|
|
|
"@types/jsan": "^3.1.2",
|
2021-10-21 22:08:35 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
|
|
"@typescript-eslint/parser": "^5.1.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"eslint-plugin-jest": "^25.2.2",
|
2021-10-11 07:16:48 +03:00
|
|
|
"immutable": "^4.0.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"jest": "^27.3.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2021-10-21 07:26:47 +03:00
|
|
|
"ts-jest": "^27.0.7",
|
|
|
|
"typescript": "~4.4.4"
|
2020-08-29 07:14:49 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2021-10-11 07:16:48 +03:00
|
|
|
"immutable": "^4.0.0"
|
2020-08-06 23:39:05 +03:00
|
|
|
}
|
|
|
|
}
|