forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@rematch/loading",
"version": "1.0.1",
"description": "Loading indicator plugin for Rematch",
"keywords": [
"@rematch",
"loading",
"plugin",
"redux",
"rematch"
],
"homepage": "https://github.com/rematch/rematch/tree/master/plugins/loading#readme",
"bugs": {
"url": "git+https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
"files": [
"dist",
"index.d.ts"
],
"main": "dist/rematch-loading.cjs.js",
"module": "dist/rematch-loading.esm.js",
"browser": "dist/rematch-loading.umd.js",
"scripts": {
"build": "rimraf build dist && tsc && NODE_ENV=production rollup -c"
},
"devDependencies": {
"@rematch/core": "^1.0.0-alpha.3",
"@rematch/select": "^0.3.0",
"immutable": "^4.0.0-rc.9",
"redux-immutable": "^4.0.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"@rematch/core": ">=1.0.0-alpha.0"
}
}