Projekt

Obecné

Profil

Stáhnout (2.89 KB) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
{
2
  "name": "redux",
3
  "version": "4.0.5",
4
  "description": "Predictable state container for JavaScript apps",
5
  "license": "MIT",
6
  "homepage": "http://redux.js.org",
7
  "repository": "github:reduxjs/redux",
8
  "bugs": "https://github.com/reduxjs/redux/issues",
9
  "keywords": [
10
    "redux",
11
    "reducer",
12
    "state",
13
    "predictable",
14
    "functional",
15
    "immutable",
16
    "hot",
17
    "live",
18
    "replay",
19
    "flux",
20
    "elm"
21
  ],
22
  "authors": [
23
    "Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)",
24
    "Andrew Clark <acdlite@me.com> (https://github.com/acdlite)"
25
  ],
26
  "main": "lib/redux.js",
27
  "unpkg": "dist/redux.js",
28
  "module": "es/redux.js",
29
  "typings": "./index.d.ts",
30
  "files": [
31
    "dist",
32
    "lib",
33
    "es",
34
    "src",
35
    "index.d.ts"
36
  ],
37
  "scripts": {
38
    "clean": "rimraf lib dist es coverage",
39
    "format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
40
    "format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"",
41
    "lint": "eslint src test",
42
    "pretest": "npm run build",
43
    "test": "jest",
44
    "test:watch": "npm test -- --watch",
45
    "test:cov": "npm test -- --coverage",
46
    "build": "rollup -c",
47
    "prepare": "npm run clean && npm run format:check && npm run lint && npm test",
48
    "examples:lint": "eslint examples",
49
    "examples:test": "cross-env CI=true babel-node examples/testAll.js"
50
  },
51
  "dependencies": {
52
    "loose-envify": "^1.4.0",
53
    "symbol-observable": "^1.2.0"
54
  },
55
  "devDependencies": {
56
    "@babel/cli": "^7.5.0",
57
    "@babel/core": "^7.5.4",
58
    "@babel/node": "^7.5.0",
59
    "@babel/plugin-external-helpers": "^7.2.0",
60
    "@babel/plugin-proposal-object-rest-spread": "^7.5.4",
61
    "@babel/preset-env": "^7.5.4",
62
    "@babel/preset-flow": "^7.0.0",
63
    "@babel/register": "^7.4.4",
64
    "@typescript-eslint/eslint-plugin": "^1.11.0",
65
    "@typescript-eslint/parser": "^1.11.0",
66
    "babel-core": "^7.0.0-bridge.0",
67
    "babel-eslint": "^10.0.2",
68
    "babel-jest": "^24.8.0",
69
    "cross-env": "^5.2.0",
70
    "eslint": "^5.16.0",
71
    "eslint-config-react-app": "^4.0.1",
72
    "eslint-plugin-flowtype": "^2.50.3",
73
    "eslint-plugin-import": "^2.18.0",
74
    "eslint-plugin-jsx-a11y": "^6.2.3",
75
    "eslint-plugin-react": "^7.14.2",
76
    "eslint-plugin-react-hooks": "^1.6.1",
77
    "glob": "^7.1.4",
78
    "jest": "^24.8.0",
79
    "prettier": "^1.18.2",
80
    "rimraf": "^2.6.3",
81
    "rollup": "^1.16.7",
82
    "rollup-plugin-babel": "^4.3.3",
83
    "rollup-plugin-node-resolve": "^5.2.0",
84
    "rollup-plugin-replace": "^2.2.0",
85
    "rollup-plugin-terser": "^5.1.1",
86
    "rxjs": "^6.5.2",
87
    "typescript": "^3.5.3",
88
    "typings-tester": "^0.3.2"
89
  },
90
  "npmName": "redux",
91
  "npmFileMap": [
92
    {
93
      "basePath": "/dist/",
94
      "files": [
95
        "*.js"
96
      ]
97
    }
98
  ],
99
  "browserify": {
100
    "transform": [
101
      "loose-envify"
102
    ]
103
  },
104
  "jest": {
105
    "testRegex": "(/test/.*\\.spec\\.js)$"
106
  },
107
  "sideEffects": false
108
}