-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
82 lines (82 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "remotedev-rn-debugger",
"version": "0.8.4",
"description": "Injecting remotedev-app monitor into official Remote debugger of React Native",
"main": "lib/main.js",
"files": [
"bin",
"lib",
"bundle.js"
],
"bin": {
"remotedev-debugger": "bin/cli.js",
"remotedev-rn-debugger": "bin/cli.js"
},
"scripts": {
"lint": "eslint app/ src/ test/*.js webpack.*",
"test": "mocha --compilers js:babel-core/register -r test/setup test/*.test.js",
"clean": "rm bundle.js",
"build:app": "webpack --progress",
"build:main": "babel --out-dir lib src",
"build": "npm run build:main && npm run build:app",
"dev": "webpack-dev-server --config=webpack.config.dev.js --host=localhost --hot --inline --colors",
"prepublish": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhen0409/remotedev-rn-debugger.git"
},
"keywords": [
"remote",
"redux",
"devtools",
"remotedev",
"react",
"native",
"debugger",
"desktop"
],
"authors": [
"Jhen <developer@jhen.me> (https://github.com/jhen0409)",
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.4.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^4.0.2",
"codemirror": "^5.30.0",
"css-loader": "^0.28.4",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.0",
"fs-extra": "^4.0.2",
"mocha": "^4.0.1",
"parse-key": "^0.2.1",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dock": "^0.2.3",
"react-dom": "^15.6.1",
"remotedev-app": "^0.10.8",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"chalk": "^2.0.1",
"minimist": "^1.2.0",
"remotedev-server": "^0.2.4",
"semver": "^5.4.1"
},
"peerDependencies": {
"remote-redux-devtools": ">= 0.2.0"
}
}