mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
9a77585dd7
* chore(deps): update all non-major dependencies * Prettify * Combine versions * Downgrade knex * Engine changes * Only LTS * Greater than * Combine lodash * Fix type * Fix type * Update snapshots Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@redux-devtools/serialize",
|
|
"version": "0.3.0",
|
|
"description": "Serialize unserializable data and parse it back.",
|
|
"keywords": [
|
|
"redux",
|
|
"devtools"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-serialize",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"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": {
|
|
"build": "npm run build:types && npm run build:js",
|
|
"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",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"type-check": "tsc --noEmit",
|
|
"type-check:watch": "npm run type-check -- --watch",
|
|
"preversion": "npm run type-check && npm run lint && npm run test",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"jsan": "^3.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsan": "^3.1.2",
|
|
"immutable": "^4.0.0-rc.14"
|
|
},
|
|
"peerDependencies": {
|
|
"immutable": "^4.0.0-rc.14"
|
|
}
|
|
}
|