forked from jeffbski/redux-logic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 6.07 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 6.07 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "redux-logic",
"version": "0.12.3",
"description": "Redux middleware for organizing all your business logic. Intercept actions and perform async processing.",
"main": "build-lib/index.js",
"browser": {
"main": "dist/redux-logic.js"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"module": "build-es/index.js",
"jsnext:main": "build-es/index.js",
"files": [
"dist",
"build-lib",
"build-es",
"src"
],
"scripts": {
"start": "npm run test:watch",
"clean": "rimraf build-lib dist build-es coverage",
"lint": "eslint src test",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-register --recursive -r ./test/setup.js",
"test:prod": "cross-env BABEL_ENV=commonjs NODE_ENV=production mocha --compilers js:babel-register --recursive -r ./test/setup.js",
"test:watch": "npm test -- --watch",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test --recursive",
"test:cov-codacy": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test --recursive && cat coverage/lcov.info | codacy-coverage",
"test:rxbuild": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-register test/rxbuild.spec.js -r ./test/setup.js",
"test:examples": "cross-env BABEL_ENV=commonjs babel-node examples/testAll.js",
"check:src": "npm run lint && npm run test && npm run test:rxbuild && npm run test:prod",
"check:examples": "npm run build:examples && npm run test:examples",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir build-lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir build-es",
"build:umd": "cross-env MODTYPE=umd BABEL_ENV=commonjs webpack src/index.js dist/redux-logic.js",
"build:umd:min": "cross-env MODTYPE=umd TRANSFORM=minify BABEL_ENV=commonjs webpack src/index.js dist/redux-logic.min.js",
"build:examples": "cross-env BABEL_ENV=commonjs babel-node examples/buildAll.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"dev-build": "cross-env NODE_ENV=development npm run build",
"prod-build": "cross-env NODE_ENV=production npm run build",
"fullbuild:examples": "cross-env BABEL_ENV=commonjs babel-node examples/fullBuildAll.js",
"prepublish": "npm run clean && npm run check:src && npm run prod-build && check-es3-syntax build-lib/ --kill",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g jeffbski/redux-logic && cp logo/apple-touch-icon.png _book/gitbook/images/apple-touch-icon-precomposed-152.png && cp logo/favicon.ico _book/gitbook/images",
"docs:watch": "npm run docs:prepare && 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:jeffbski/redux-logic gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffbski/redux-logic.git"
},
"keywords": [
"redux",
"middleware",
"redux middleware",
"logic",
"business logic",
"domain",
"domain logic",
"epic",
"saga",
"observable",
"side effect",
"promise",
"async await"
],
"authors": [
"Jeff Barczewski <jeff.barczewski@gmail.com> (https://github.com/jeffbski)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffbski/redux-logic/issues"
},
"homepage": "https://github.com/jeffbski/redux-logic",
"dependencies": {
"is-observable": "^0.2.0",
"is-promise": "^2.1.0",
"loose-envify": "^1.2.0",
"rxjs": "^5.0.3"
},
"peerDependencies": {
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-register": "^6.3.13",
"check-es3-syntax-cli": "^0.1.2",
"codacy-coverage": "^2.0.0",
"core-js": "^2.4.1",
"cross-env": "^2.0.1",
"eslint": "^3.2.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.8.0",
"gitbook-cli": "^2.3.0",
"mocha": "^3.1.0",
"nyc": "^8.3.0",
"redux": "^3.5.2",
"rimraf": "^2.3.4",
"webpack": "^1.9.6",
"yarn": "^0.27.5"
},
"npmName": "redux-logic",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js",
"**/*.test.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}