forked from jhen0409/react-native-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1004 Bytes
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
{
"name": "react-native-debugger-open",
"version": "0.3.11",
"description": "Replace `open debugger-ui with Chrome` to `open React Native Debugger` from react-native packager",
"bin": {
"rndebugger-open": "bin/rndebugger-open.js"
},
"main": "lib/open.js",
"scripts": {
"build": "babel src --out-dir lib --ignore *.tmpl.js",
"prepublish": "npm run build"
},
"files": [
"bin",
"lib"
],
"homepage": "https://github.com/jhen0409/react-native-debugger",
"repository": "https://github.com/jhen0409/react-native-debugger/tree/master/npm-package",
"keywords": [
"react",
"react-native",
"debugger",
"react-devtools",
"redux-devtools",
"electron"
],
"author": "Jhen <developer@jhen.me>",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"es6-template": "^1.0.4",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-es2015-node4": "^2.1.1"
}
}