forked from redux-observable/redux-observable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.68 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
{
"name": "redux-observable",
"version": "0.17.0",
"description": "RxJS based middleware for Redux. Compose and cancel async actions and more.",
"module": "lib/esm/index.js",
"main": "lib/cjs/index.js",
"scripts": {
"lint": "eslint src && eslint test",
"build": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:esm": "gulp build:esm",
"build:cjs": "babel src -d lib/cjs",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/redux-observable.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/redux-observable.min.js",
"build:tests": "rm -rf temp && babel test -d temp",
"clean": "rimraf lib temp dist",
"check": "npm run lint && npm run test",
"test": "npm run lint && npm run build && npm run build:tests && mocha temp && npm run test:typings",
"test:typings": "tsc --noImplicitAny index.d.ts test/typings.ts --outDir temp --target ES5 --moduleResolution node && cd temp && node typings.js",
"shipit": "npm run clean && npm run build && npm run lint && npm test && scripts/preprepublish.sh && npm publish",
"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 git@github.com:redux-observable/redux-observable gh-pages --force"
},
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"index.d.ts",
"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": "ben@benlesh.com"
},
{
"name": "Jay Phelps",
"email": "hello@jayphelps.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-observable/redux-observable/issues"
},
"homepage": "https://github.com/redux-observable/redux-observable#README.md",
"peerDependencies": {
"redux": "3.*",
"rxjs": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/es6-shim": "^0.31.32",
"@types/mocha": "^2.2.33",
"@types/sinon": "^2.1.3",
"babel-cli": "^6.11.4",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^4.0.1",
"conventional-changelog-cli": "1.3.3",
"cross-env": "^5.0.0",
"eslint": "^4.6.0",
"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": "^3.0.0",
"gitbook-plugin-prism": "^2.0.1",
"gitbook-plugin-theme-default": "^1.0.5",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"json-server": "^0.10.0",
"mocha": "^3.0.1",
"redux": "^3.5.2",
"rimraf": "^2.5.4",
"rxjs": "^5.5.0",
"sinon": "^2.3.3",
"typescript": "^2.1.4",
"webpack": "^2.2.1",
"webpack-rxjs-externals": "~1.1.0"
}
}