forked from redux-observable/redux-observable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.6 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "redux-observable",
"version": "2.0.0",
"description": "RxJS based middleware for Redux. Compose and cancel async actions and more.",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"es2015": "./dist/es2015/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npm run build:esm && npm run build:es2015 && npm run build:cjs && npm run build:types && npm run build:umd && npm run build:umd:min",
"build:esm": "tsc -p configs/tsconfig.esm.json",
"build:es2015": "tsc -p configs/tsconfig.es2015.json",
"build:cjs": "tsc -p configs/tsconfig.cjs.json",
"build:types": "tsc -p configs/tsconfig.types.json",
"build:umd": "cross-env NODE_ENV=development webpack -o dist/redux-observable.js",
"build:umd:min": "cross-env NODE_ENV=production webpack -o dist/redux-observable.min.js",
"build:tests": "rimraf temp && tsc -p configs/tsconfig.test.json",
"clean": "rimraf temp dist",
"check": "npm run lint && npm run test",
"test": "npm run lint && npm run build && npm run build:tests && mocha temp",
"shipit": "npm run clean && npm run build && npm run lint && npm test && scripts/publish.sh",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g redux-observable/redux-observable && cp logo/favicon.ico _book/gitbook/images",
"docs:watch": "gitbook serve",
"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 [email protected]:redux-observable/redux-observable gh-pages --force"
},
"typings": "./dist/types/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/redux-observable/redux-observable.git"
},
"keywords": [
"Rx",
"Ducks",
"Reducks",
"Redux",
"middleware",
"observable",
"thunk",
"async",
"cancel",
"action"
],
"contributors": [
{
"name": "Ben Lesh",
"email": "[email protected]"
},
{
"name": "Jay Phelps",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-observable/redux-observable/issues"
},
"homepage": "https://github.com/redux-observable/redux-observable#README.md",
"peerDependencies": {
"redux": ">=4 <5"
},
"dependencies": {
"rxjs": "^7.0.0",
"tslib": "~2.1.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.48",
"@types/node": "^14.14.3",
"@types/sinon": "^4.3.1",
"@typescript-eslint/eslint-plugin": "~4.22.0",
"@typescript-eslint/parser": "~4.22.0",
"babel-polyfill": "^6.13.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "1.3.3",
"cross-env": "^5.0.0",
"eslint": "^6.5.1",
"esm": "^3.2.25",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-addcssjs": "^1.0.2",
"gitbook-plugin-anker-enable": "^0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.0.1",
"gitbook-plugin-theme-default": "^1.0.5",
"json-server": "^0.10.0",
"mocha": "^3.5.3",
"npm": "^7.12.0",
"redux": "^4.0.0",
"rimraf": "^2.5.4",
"rxjs": "^7.0.0",
"sinon": "^4.5.0",
"ts-loader": "^6.2.0",
"tslib": "~2.1.0",
"typescript": "~4.2.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-rxjs-externals": "~2.0.0"
}
}