UNPKG

1.81 kBJSONView Raw
1{
2 "name": "redux-devtools-dock-monitor",
3 "version": "1.2.0",
4 "description": "A resizable and movable dock for Redux DevTools monitors",
5 "keywords": [
6 "redux",
7 "devtools",
8 "flux",
9 "react",
10 "hot reloading",
11 "time travel",
12 "live edit"
13 ],
14 "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-dock-monitor",
15 "bugs": {
16 "url": "https://github.com/reduxjs/redux-devtools/issues"
17 },
18 "license": "MIT",
19 "author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
20 "files": [
21 "lib",
22 "src"
23 ],
24 "main": "lib/index.js",
25 "types": "lib/index.d.ts",
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/reduxjs/redux-devtools.git"
29 },
30 "scripts": {
31 "build": "npm run build:types && npm run build:js",
32 "build:types": "tsc --emitDeclarationOnly",
33 "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
34 "clean": "rimraf lib",
35 "lint": "eslint . --ext .ts,.tsx",
36 "lint:fix": "eslint . --ext .ts,.tsx --fix",
37 "type-check": "tsc --noEmit",
38 "type-check:watch": "npm run type-check -- --watch",
39 "preversion": "npm run type-check && npm run lint",
40 "prepublishOnly": "npm run clean && npm run build"
41 },
42 "dependencies": {
43 "@types/prop-types": "^15.7.3",
44 "parse-key": "^0.2.1",
45 "prop-types": "^15.7.2",
46 "react-dock": "^0.3.0"
47 },
48 "devDependencies": {
49 "@types/parse-key": "^0.2.0",
50 "@types/react": "^16.9.46",
51 "react": "^16.13.1",
52 "redux": "^4.0.5",
53 "redux-devtools": "^3.7.0"
54 },
55 "peerDependencies": {
56 "@types/react": "^16.3.18",
57 "react": "^16.3.0",
58 "redux": "^3.4.0 || ^4.0.0",
59 "redux-devtools": "^3.4.0"
60 },
61 "gitHead": "f4405ac0f016b7997e1a6d31796aa99ad632889e"
62}