Npm package config and add credits

This commit is contained in:
Zalmoxisus 2018-12-22 02:30:34 +02:00
parent da17f62f02
commit 0a6f04d7ff
3 changed files with 9 additions and 6 deletions

View File

@ -12,6 +12,8 @@
"version": "npm run build:demo && git add -A .",
"postversion": "git push",
"prepublish": "npm run build:lib",
"prepare": "npm run build:lib",
"prepublishOnly": "npm run lint && npm run build:lib",
"gh": "git subtree push --prefix demo/dist origin gh-pages"
},
"main": "lib/index.js",

View File

@ -2,7 +2,7 @@ Redux DevTools Log Monitor
=========================
The default monitor for [Redux DevTools](https://github.com/gaearon/redux-devtools) with a tree view.
It shows a log of states and actions, and lets you change their history.
It shows a log of states and actions, and lets you change their history. Created by [Dan Abramov](http://github.com/gaearon) and merged into `redux-devtools` monorepo from [here](https://github.com/gaearon/redux-devtools-log-monitor).
![](http://i.imgur.com/J4GeW0M.gif)
@ -33,7 +33,7 @@ Then you can render `<DevTools>` to any place inside app or even into a separate
Alternative, you can use it together with [`DockMonitor`](https://github.com/gaearon/redux-devtools-dock-monitor) to make it dockable.
Consult the [`DockMonitor` README](https://github.com/gaearon/redux-devtools-dock-monitor) for details of this approach.
[Read how to start using Redux DevTools.](https://github.com/gaearon/redux-devtools)
[Read how to start using Redux DevTools.](https://github.com/reduxjs/redux-devtools)
### Features

View File

@ -13,11 +13,12 @@
"lint": "eslint src test",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/redux-devtools-log-monitor.git"
"url": "https://github.com/reduxjs/redux-devtools"
},
"keywords": [
"redux",
@ -31,9 +32,9 @@
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/redux-devtools-log-monitor/issues"
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"homepage": "https://github.com/gaearon/redux-devtools-log-monitor",
"homepage": "https://github.com/reduxjs/redux-devtools",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.20",