UNPKG

3.7 kBJSONView Raw
1{
2 "name": "redux-observable",
3 "version": "1.1.0",
4 "description": "RxJS based middleware for Redux. Compose and cancel async actions and more.",
5 "module": "lib/esm/index.js",
6 "main": "lib/cjs/index.js",
7 "sideEffects": false,
8 "scripts": {
9 "lint": "eslint src && eslint test",
10 "build": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:umd:min",
11 "build:esm": "gulp build:esm",
12 "build:cjs": "babel src -d lib/cjs",
13 "build:umd": "cross-env NODE_ENV=development webpack src/index.js -o dist/redux-observable.js",
14 "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js -o dist/redux-observable.min.js",
15 "build:tests": "rimraf temp && babel test -d temp",
16 "clean": "rimraf lib temp dist",
17 "check": "npm run lint && npm run test",
18 "test": "npm run lint && npm run build && npm run build:tests && mocha temp && npm run test:typings",
19 "test:typings": "tsc --strict index.d.ts test/typings.ts --outDir temp --target ES5 --moduleResolution node --lib dom,es2015 && cd temp && node typings.js",
20 "shipit": "npm run clean && npm run build && npm run lint && npm test && scripts/publish.sh",
21 "docs:clean": "rimraf _book",
22 "docs:prepare": "gitbook install",
23 "docs:build": "npm run docs:prepare && gitbook build -g redux-observable/redux-observable && cp logo/favicon.ico _book/gitbook/images",
24 "docs:watch": "gitbook serve",
25 "docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:redux-observable/redux-observable gh-pages --force"
26 },
27 "typings": "./index.d.ts",
28 "files": [
29 "dist",
30 "lib",
31 "index.d.ts",
32 "README.md",
33 "LICENSE"
34 ],
35 "repository": {
36 "type": "git",
37 "url": "git+https://github.com/redux-observable/redux-observable.git"
38 },
39 "keywords": [
40 "Rx",
41 "Ducks",
42 "Reducks",
43 "Redux",
44 "middleware",
45 "observable",
46 "thunk",
47 "async",
48 "cancel",
49 "action"
50 ],
51 "contributors": [
52 {
53 "name": "Ben Lesh",
54 "email": "ben@benlesh.com"
55 },
56 {
57 "name": "Jay Phelps",
58 "email": "hello@jayphelps.com"
59 }
60 ],
61 "license": "MIT",
62 "bugs": {
63 "url": "https://github.com/redux-observable/redux-observable/issues"
64 },
65 "homepage": "https://github.com/redux-observable/redux-observable#README.md",
66 "peerDependencies": {
67 "redux": ">=4 <5",
68 "rxjs": ">=6.0.0-beta.0 <7"
69 },
70 "devDependencies": {
71 "@types/chai": "^3.5.2",
72 "@types/mocha": "^2.2.48",
73 "@types/sinon": "^4.3.1",
74 "babel-cli": "^6.11.4",
75 "babel-core": "^6.26.0",
76 "babel-eslint": "^7.0.0",
77 "babel-loader": "^7.0.0",
78 "babel-plugin-transform-object-rest-spread": "^6.8.0",
79 "babel-polyfill": "^6.13.0",
80 "babel-preset-env": "^1.6.1",
81 "babel-register": "^6.11.6",
82 "chai": "^4.1.2",
83 "conventional-changelog-cli": "1.3.3",
84 "cross-env": "^5.0.0",
85 "eslint": "^4.6.0",
86 "gitbook-cli": "^2.3.0",
87 "gitbook-plugin-addcssjs": "^1.0.2",
88 "gitbook-plugin-anker-enable": "^0.0.4",
89 "gitbook-plugin-edit-link": "^2.0.2",
90 "gitbook-plugin-github": "^2.0.0",
91 "gitbook-plugin-prism": "^2.0.1",
92 "gitbook-plugin-theme-default": "^1.0.5",
93 "gulp": "^3.9.1",
94 "gulp-babel": "^6.1.2",
95 "json-server": "^0.10.0",
96 "mocha": "^3.5.3",
97 "redux": "^4.0.0",
98 "rimraf": "^2.5.4",
99 "rxjs": "^6.0.0",
100 "sinon": "^4.5.0",
101 "typescript": "^2.1.4",
102 "webpack": "^4.29.3",
103 "webpack-cli": "^3.2.3",
104 "webpack-rxjs-externals": "~2.0.0"
105 }
106}