mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
stash
This commit is contained in:
parent
559f1494a0
commit
3d54daa515
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"presets": ["@babel/preset-env", "@babel/preset-react"],
|
"presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"],
|
||||||
"plugins": ["@babel/plugin-proposal-class-properties"]
|
"plugins": ["@babel/plugin-proposal-class-properties"]
|
||||||
}
|
}
|
||||||
|
|
2
packages/react-json-tree/.eslintignore
Normal file
2
packages/react-json-tree/.eslintignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
lib
|
||||||
|
umd
|
21
packages/react-json-tree/.eslintrc.js
Normal file
21
packages/react-json-tree/.eslintrc.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
module.exports = {
|
||||||
|
extends: '../../.eslintrc',
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ['*.ts', '*.tsx'],
|
||||||
|
extends: '../../eslintrc.ts.react.base.json',
|
||||||
|
parserOptions: {
|
||||||
|
tsconfigRootDir: __dirname,
|
||||||
|
project: ['./tsconfig.json'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ['test/*.ts', 'test/*.tsx'],
|
||||||
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
||||||
|
parserOptions: {
|
||||||
|
tsconfigRootDir: __dirname,
|
||||||
|
project: ['./test/tsconfig.json'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
2
packages/react-json-tree/.prettierignore
Normal file
2
packages/react-json-tree/.prettierignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
lib
|
||||||
|
umd
|
|
@ -2,7 +2,33 @@
|
||||||
"name": "react-json-tree",
|
"name": "react-json-tree",
|
||||||
"version": "0.12.1",
|
"version": "0.12.1",
|
||||||
"description": "React JSON Viewer Component, Extracted from redux-devtools",
|
"description": "React JSON Viewer Component, Extracted from redux-devtools",
|
||||||
|
"keywords": [
|
||||||
|
"react",
|
||||||
|
"json viewer"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-json-tree",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"author": "Shu Uesugi <shu@chibicode.com> (http://github.com/chibicode)",
|
||||||
|
"contributors": [
|
||||||
|
"Alexander Kuznetsov <alexkuz@gmail.com> (http://kuzya.org/)",
|
||||||
|
"Dave Vedder <veddermatic@gmail.com> (http://www.eskimospy.com/)",
|
||||||
|
"Daniele Zannotti <dzannotti@me.com> (http://www.github.com/dzannotti)",
|
||||||
|
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
||||||
|
],
|
||||||
|
"files": [
|
||||||
|
"lib",
|
||||||
|
"src",
|
||||||
|
"umd"
|
||||||
|
],
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
"types": "lib/index.d.ts",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf lib",
|
"clean": "rimraf lib",
|
||||||
"build": "babel src --out-dir lib",
|
"build": "babel src --out-dir lib",
|
||||||
|
@ -13,31 +39,6 @@
|
||||||
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min",
|
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min",
|
||||||
"start": "cd examples && npm start"
|
"start": "cd examples && npm start"
|
||||||
},
|
},
|
||||||
"files": [
|
|
||||||
"lib",
|
|
||||||
"src",
|
|
||||||
"umd"
|
|
||||||
],
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"react",
|
|
||||||
"json viewer"
|
|
||||||
],
|
|
||||||
"author": "Shu Uesugi <shu@chibicode.com> (http://github.com/chibicode)",
|
|
||||||
"contributors": [
|
|
||||||
"Alexander Kuznetsov <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
||||||
"Dave Vedder <veddermatic@gmail.com> (http://www.eskimospy.com/)",
|
|
||||||
"Daniele Zannotti <dzannotti@me.com> (http://www.github.com/dzannotti)",
|
|
||||||
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.10.5",
|
"@babel/cli": "^7.10.5",
|
||||||
"@babel/core": "^7.11.1",
|
"@babel/core": "^7.11.1",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user