forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.88 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@rematch/core",
"version": "1.0.4",
"description": "A Redux Framework",
"keywords": [
"@rematch",
"rematch",
"redux",
"state management",
"javascript"
],
"homepage": "https://github.com/rematch/rematch#readme",
"bugs": {
"url": "https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"authors": [
"Blair Bodnar <[email protected]> (https://github.com/blairbodnar)",
"Shawn McKay <[email protected]> (https://github.com/shmck)"
],
"files": [
"scripts",
"dist",
"src/typings.d.ts"
],
"main": "dist/cjs",
"module": "dist/esm/rematch.js",
"browser": "dist/umd/rematch.js",
"types": "src/typings.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rematch/rematch.git"
},
"scripts": {
"clean:dist": "rimraf dist",
"clean:build": "rimraf build",
"clean": "npm run clean:dist & npm run clean:build",
"build": "npm run clean && rollup -c",
"build:all": "bash ./scripts/build.sh",
"dev": "tsc --watch src",
"install:all": "tsc && bash ./scripts/setup_plugins.sh",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest",
"size": "bundlesize"
},
"dependencies": {
"redux": "4.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"bundlesize": "^0.17.0",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-prism": "^2.4.0",
"jest": "^23.6.0",
"redux-persist": "^5.9.1",
"reselect": "^3.0.1",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-uglify": "^6.0.0",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"uglify-es": "^3.3.9"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"NODE_ENV": "test"
},
"collectCoverage": true,
"coverageDirectory": "coverage/",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"coveragePathIgnorePatterns": [
"/_book/",
"/node_modules/",
"/plugins/react-navigation/",
"/dist",
".mock.js",
"/test/utils.js"
],
"testPathIgnorePatterns": [
"/_book/",
"/lib/",
"/plugins",
"/plugins/react-navigation/examples",
"/plugins/subscriptions",
"/plugins/loading-immutable",
"/examples/ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"bundlesize": [
{
"path": "./dist/umd/rematch.prod.min.js",
"maxSize": "6 kB"
}
]
}