UNPKG

3.98 kBJSONView Raw
1{
2 "name": "reactotron-react-native",
3 "version": "3.5.3",
4 "description": "A development tool to explore, inspect, and diagnose your React Native apps.",
5 "author": "Infinite Red",
6 "license": "MIT",
7 "bugs": {
8 "url": "https://github.com/infinitered/reactotron/issues"
9 },
10 "homepage": "https://github.com/infinitered/reactotron-react-native",
11 "repository": "https://github.com/infinitered/reactotron-react-native",
12 "files": [
13 "dist",
14 "LICENSE",
15 "README.md",
16 "reactotron-react-native.d.ts"
17 ],
18 "main": "dist/index.js",
19 "types": "./dist/types/reactotron-react-native.d.ts",
20 "scripts": {
21 "test": "jest",
22 "test:watch": "jest --watch --notify",
23 "format": "prettier --write {**,.}/*.ts",
24 "build": "npm-run-all clean tsc compile",
25 "build:dev": "npm-run-all clean tsc compile:dev",
26 "clean": "trash dist",
27 "lint": "eslint src --ext .ts,.tsx",
28 "compile": "NODE_ENV=production rollup -c",
29 "compile:dev": "NODE_ENV=development rollup -c",
30 "tsc": "tsc",
31 "ci:test": "yarn test",
32 "ci:publish": "yarn semantic-release",
33 "semantic-release": "semantic-release"
34 },
35 "peerDependencies": {
36 "react": "^15.2.1 || 16.0.0-alpha.6 || 16.0.0-alpha.12 || 16.0.0-beta.5 || ^16.0.0",
37 "react-native": ">=0.40.0"
38 },
39 "dependencies": {
40 "@types/jest": "24.0.13",
41 "@types/node": "11.13.11",
42 "@types/react-native": "0.57.60",
43 "mitt": "1.1.3",
44 "query-string": "6.5.0",
45 "reactotron-core-client": "2.7.4",
46 "rn-host-detect": "1.1.5"
47 },
48 "devDependencies": {
49 "@babel/core": "7.4.5",
50 "@babel/plugin-proposal-class-properties": "7.4.4",
51 "@babel/plugin-transform-react-jsx": "7.3.0",
52 "@babel/preset-env": "7.4.5",
53 "@babel/preset-typescript": "7.3.3",
54 "@semantic-release/git": "7.1.0-beta.3",
55 "@typescript-eslint/eslint-plugin": "1.9.0",
56 "@typescript-eslint/parser": "1.9.0",
57 "babel-eslint": "10.0.1",
58 "babel-jest": "24.8.0",
59 "eslint": "5.16.0",
60 "eslint-config-prettier": "4.3.0",
61 "eslint-config-standard": "12.0.0",
62 "eslint-plugin-import": "2.17.3",
63 "eslint-plugin-node": "9.1.0",
64 "eslint-plugin-promise": "4.1.1",
65 "eslint-plugin-standard": "4.0.0",
66 "jest": "24.8.0",
67 "npm-run-all": "4.1.5",
68 "prettier": "1.17.1",
69 "react": "16.8.6",
70 "react-native": "0.59.8",
71 "rollup": "1.12.4",
72 "rollup-plugin-babel": "4.3.2",
73 "rollup-plugin-babel-minify": "8.0.0",
74 "rollup-plugin-filesize": "6.1.0",
75 "rollup-plugin-node-resolve": "5.0.0",
76 "rollup-plugin-resolve": "0.0.1-predev.1",
77 "semantic-release": "16.0.0-beta.18",
78 "trash-cli": "2.0.0",
79 "ts-jest": "24.0.2",
80 "typescript": "3.4.5"
81 },
82 "eslintConfig": {
83 "parser": "@typescript-eslint/parser",
84 "extends": [
85 "plugin:@typescript-eslint/recommended",
86 "standard",
87 "prettier"
88 ],
89 "parserOptions": {
90 "ecmaFeatures": {
91 "jsx": true
92 },
93 "project": "./tsconfig.json"
94 },
95 "plugins": [
96 "@typescript-eslint"
97 ],
98 "globals": {
99 "__DEV__": false,
100 "jasmine": false,
101 "beforeAll": false,
102 "afterAll": false,
103 "beforeEach": false,
104 "afterEach": false,
105 "test": false,
106 "expect": false,
107 "describe": false,
108 "jest": false,
109 "it": false
110 },
111 "rules": {
112 "no-unused-vars": 0,
113 "no-undef": 0,
114 "space-before-function-paren": 0,
115 "@typescript-eslint/indent": 0,
116 "@typescript-eslint/explicit-member-accessibility": 0,
117 "@typescript-eslint/explicit-function-return-type": 0,
118 "@typescript-eslint/no-explicit-any": 0,
119 "@typescript-eslint/no-object-literal-type-assertion": 0,
120 "@typescript-eslint/no-empty-interface": 0,
121 "@typescript-eslint/no-var-requires": 0,
122 "@typescript-eslint/member-delimiter-style": 0
123 }
124 },
125 "jest": {
126 "preset": "ts-jest",
127 "testEnvironment": "node",
128 "testMatch": [
129 "**/*.test.[tj]s"
130 ]
131 }
132}