-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "remote-redux-devtools",
"version": "0.5.16",
"description": "Relay Redux actions to remote Redux DevTools.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"build:examples": "babel-node examples/buildAll.js",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/zalmoxisus/remote-redux-devtools.git"
},
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zalmoxisus/remote-redux-devtools/issues"
},
"homepage": "https://github.com/zalmoxisus/remote-redux-devtools",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.20",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-preset-es2015-loose": "^6.1.3",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.11.3",
"expect": "^1.6.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
},
"dependencies": {
"jsan": "^3.1.13",
"querystring": "^0.2.0",
"redux-devtools-instrument": "^1.9.4",
"redux-devtools-core": "^0.2.1",
"rn-host-detect": "^1.1.5",
"socketcluster-client": "^14.2.1"
}
}