UNPKG

1.86 kBJSONView Raw
1{
2 "name": "redux-devtools",
3 "version": "3.7.0",
4 "description": "Redux DevTools with hot reloading and time travel",
5 "keywords": [
6 "redux",
7 "devtools",
8 "flux",
9 "hot reloading",
10 "time travel",
11 "live edit"
12 ],
13 "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools",
14 "bugs": {
15 "url": "https://github.com/reduxjs/redux-devtools/issues"
16 },
17 "license": "MIT",
18 "author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
19 "files": [
20 "lib",
21 "src"
22 ],
23 "main": "lib/index.js",
24 "types": "lib/index.d.ts",
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/reduxjs/redux-devtools.git"
28 },
29 "scripts": {
30 "build": "npm run build:types && npm run build:js",
31 "build:types": "tsc --emitDeclarationOnly",
32 "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
33 "clean": "rimraf lib",
34 "test": "jest",
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 && npm run test",
40 "prepublishOnly": "npm run clean && npm run build"
41 },
42 "dependencies": {
43 "@types/prop-types": "^15.7.3",
44 "lodash": "^4.17.19",
45 "prop-types": "^15.7.2",
46 "redux-devtools-instrument": "^1.10.0"
47 },
48 "devDependencies": {
49 "@types/lodash": "^4.14.159",
50 "@types/react": "^16.3.18",
51 "@types/react-redux": "^7.1.9",
52 "react": "^16.13.1",
53 "react-redux": "^7.2.1",
54 "redux": "^4.0.5"
55 },
56 "peerDependencies": {
57 "react": "^0.14.9 || ^15.3.0 || ^16.0.0",
58 "react-redux": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
59 "redux": "^3.5.2 || ^4.0.0"
60 },
61 "gitHead": "f4405ac0f016b7997e1a6d31796aa99ad632889e"
62}