forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@rematch/select",
"version": "1.0.0",
"description": "Selectors plugin for Rematch",
"keywords": [
"plugin",
"rematch",
"select",
"selectors"
],
"homepage": "https://github.com/rematch/rematch/plugins/select#readme",
"bugs": {
"url": "https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"authors": [
"Blair Bodnar <[email protected]> (https://github.com/blairbodnar)",
"Tom Aranda <[email protected]> (https://github.com/taranda)"
],
"files": [
"dist"
],
"main": "dist/rematch-select.cjs.js",
"module": "dist/rematch-select.esm.js",
"browser": "dist/rematch-select.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": "1.0.0-alpha.0",
"rimraf": "^2.6.2",
"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": ">=1.0.0-alpha.0"
}
}