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
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "@rematch/subscriptions",
"version": "0.2.2",
"description": "Rematch plugin for subscriptions",
"keywords": [
"@rematch",
"rematch",
"plugin",
"rematch",
"subscribe",
"subscription"
],
"homepage": "https://github.com/rematch/rematch#readme",
"bugs": {
"url": "https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"author": "Shawn McKay <shawn.j.mckay@gmail.com> (https://github.com/shmck)",
"files": [
"dist",
"index.d.ts"
],
"main": "dist/rematch-subscriptions.cjs.js",
"module": "dist/rematch-subscriptions.esm.js",
"browser": "dist/rematch-subscriptions.umd.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rematch/rematch.git"
},
"scripts": {
"build": "rimraf build dist && tsc && NODE_ENV=production rollup -c"
},
"devDependencies": {
"@rematch/core": "^0.3.0",
"rollup": "^0.56.5",
"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": ">0.1.3"
}
}