UNPKG

3.52 kBJSONView Raw
1{
2 "name": "reactotron-redux",
3 "version": "3.1.3",
4 "description": "A Reactotron plugin for Redux.",
5 "author": "Infinite Red",
6 "license": "MIT",
7 "bugs": {
8 "url": "https://github.com/infinitered/reactotron-redux/issues"
9 },
10 "homepage": "https://github.com/infinitered/reactotron-redux",
11 "repository": "https://github.com/infinitered/reactotron-redux",
12 "files": [
13 "dist",
14 "LICENSE",
15 "README.md",
16 "reactotron-redux.d.ts"
17 ],
18 "main": "dist/index.js",
19 "types": "./dist/types/index.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 "reactotron-core-client": "^2.5.0",
37 "redux": "^4.0.1"
38 },
39 "devDependencies": {
40 "@babel/core": "7.2.2",
41 "@babel/preset-env": "7.3.1",
42 "@babel/preset-typescript": "7.1.0",
43 "@semantic-release/git": "7.1.0-beta.3",
44 "@types/jest": "24.0.0",
45 "@typescript-eslint/eslint-plugin": "1.3.0",
46 "@typescript-eslint/parser": "1.3.0",
47 "babel-eslint": "10.0.1",
48 "babel-jest": "24.1.0",
49 "eslint": "5.13.0",
50 "eslint-config-prettier": "4.0.0",
51 "eslint-config-standard": "12.0.0",
52 "eslint-plugin-import": "2.16.0",
53 "eslint-plugin-node": "8.0.1",
54 "eslint-plugin-promise": "4.0.1",
55 "eslint-plugin-standard": "4.0.0",
56 "jest": "24.1.0",
57 "npm-run-all": "4.1.5",
58 "prettier": "1.16.4",
59 "reactotron-core-client": "2.5.0",
60 "redux": "4.0.1",
61 "rollup": "1.1.2",
62 "rollup-plugin-babel": "4.3.2",
63 "rollup-plugin-babel-minify": "7.0.0",
64 "rollup-plugin-filesize": "6.0.1",
65 "rollup-plugin-node-resolve": "4.0.0",
66 "rollup-plugin-resolve": "0.0.1-predev.1",
67 "semantic-release": "16.0.0-beta.36",
68 "trash-cli": "1.4.0",
69 "ts-jest": "23.10.5",
70 "typescript": "3.3.3"
71 },
72 "eslintConfig": {
73 "parser": "@typescript-eslint/parser",
74 "extends": [
75 "plugin:@typescript-eslint/recommended",
76 "standard",
77 "prettier"
78 ],
79 "parserOptions": {
80 "ecmaFeatures": {
81 "jsx": true
82 },
83 "project": "./tsconfig.json"
84 },
85 "plugins": [
86 "@typescript-eslint"
87 ],
88 "globals": {
89 "__DEV__": false,
90 "jasmine": false,
91 "beforeAll": false,
92 "afterAll": false,
93 "beforeEach": false,
94 "afterEach": false,
95 "test": false,
96 "expect": false,
97 "describe": false,
98 "jest": false,
99 "it": false
100 },
101 "rules": {
102 "no-unused-vars": 0,
103 "no-undef": 0,
104 "space-before-function-paren": 0,
105 "@typescript-eslint/indent": 0,
106 "@typescript-eslint/explicit-member-accessibility": 0,
107 "@typescript-eslint/explicit-function-return-type": 0,
108 "@typescript-eslint/no-explicit-any": 0,
109 "@typescript-eslint/no-object-literal-type-assertion": 0,
110 "@typescript-eslint/no-empty-interface": 0,
111 "@typescript-eslint/no-var-requires": 0,
112 "@typescript-eslint/member-delimiter-style": 0
113 }
114 },
115 "jest": {
116 "preset": "ts-jest",
117 "testEnvironment": "node",
118 "testMatch": [
119 "**/*.test.[tj]s"
120 ]
121 }
122}