-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "redux-preboiled",
"description": "Composable, typing-friendly Redux helpers",
"version": "0.5.1",
"license": "MIT",
"homepage": "https://redux-preboiled.js.org",
"repository": {
"type": "git",
"url": "[email protected]:denisw/redux-preboiled.git"
},
"exports": {
".": {
"import": "esm/index.js",
"require": "umd/index.js",
"types": "types/index.d.ts"
}
},
"main": "umd/index.js",
"module": "esm/index.js",
"esnext": "esnext/index.js",
"types": "types/index.d.ts",
"scripts": {
"prepare": "npm run build && npm run types",
"build": "rollup -c",
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "npm run lint && npm run type-check && npm test",
"test": "jest",
"type-check": "tsc --noEmit",
"types": "tsc --declaration --emitDeclarationOnly --declarationDir types src/*.ts"
},
"peerDependencies": {
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^27.1.0",
"eslint": "^7.6.0",
"expect-type": "^0.12.0",
"jest": "^27.1.0",
"prettier": "^2.0.5",
"redux": "^4.1.1",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^7.0.0",
"tsd": "^0.14.0",
"typescript": "^4.1.3"
},
"files": ["esm", "esnext", "src", "types", "umd"],
"jest": {
"testEnvironment": "node",
"testMatch": ["<rootDir>/test/**/*.test.ts"]
},
"browserslist": ["> 0.2%", "not dead", "not ie < 11", "not op_mini all"],
"sideEffects": false
}