forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 2.91 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
122
123
124
125
126
{
"name": "@rematch/core",
"version": "1.3.0",
"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": "MIT",
"authors": [
"Blair Bodnar <blairbodnar@gmail.com> (https://github.com/blairbodnar)",
"Shawn McKay <shawn.j.mckay@gmail.com> (https://github.com/shmck)"
],
"files": [
"scripts",
"dist",
"src/typings/index.d.ts"
],
"main": "dist/cjs",
"module": "dist/esm/rematch.js",
"browser": "dist/umd/rematch.js",
"types": "src/typings/index.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": "NODE_ENV=production && 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",
"test:ts:setup": "npm run build && npm run clean --prefix examples/ts/count",
"test:ts": "jest --testPathPattern=\"/test/typescript.test.js\" --testPathIgnorePatterns=[]",
"docs:serve": "docsify serve docs",
"size": "bundlesize"
},
"dependencies": {
"redux": "^4.0.4"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"bundlesize": "^0.18.0",
"coveralls": "^3.0.6",
"cross-env": "^5.2.1",
"docsify-cli": "^4.3.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"redux-persist": "^5.10.0",
"reselect": "^4.0.0",
"rimraf": "^2.6.3",
"rollup": "^1.20.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.2",
"typings-tester": "^0.3.2",
"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",
"test/typescript.test"
],
"testPathIgnorePatterns": [
"/_book/",
"/lib/",
"/plugins",
"/plugins/react-navigation/examples",
"/plugins/subscriptions",
"/plugins/loading-immutable",
"/examples/ts",
"test/typescript.test"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"bundlesize": [
{
"path": "./dist/umd/rematch.prod.min.js",
"maxSize": "6 kB"
}
]
}