-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 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
{
"name": "@splitsoftware/splitio-redux",
"version": "2.0.1",
"description": "A library to easily use Split JS SDK with Redux and React Redux",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"files": [
"README.md",
"CONTRIBUTORS-GUIDE.md",
"LICENSE",
"CHANGES.txt",
"src",
"cjs",
"esm",
"types"
],
"scripts": {
"build": "rimraf cjs/* esm/* types/* && tsc && tsc -m commonjs --outDir cjs -d true --declarationDir types",
"postbuild": "./version_replace.sh",
"check": "npm run check:lint && npm run check:types",
"check:lint": "eslint 'src/**/*.ts'",
"check:types": "tsc --noEmit",
"test": "jest src --silent",
"test:watch": "npm test -- --watch",
"test:coverage": "jest src --coverage",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"all": "npm run check && npm run build && npm run test",
"publish:rc": "npm publish --tag rc",
"publish:stable": "npm publish",
"prepublishOnly": "npm run check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splitio/redux-client.git"
},
"keywords": [
"splitio",
"redux",
"react-redux",
"sdk"
],
"author": "Split Software",
"contributors": [
{
"name": "Emiliano Sanchez",
"email": "[email protected]",
"url": "https://github.com/EmilianoSanchez"
},
{
"name": "Nico Zelaya",
"email": "[email protected]",
"url": "https://github.com/NicoZelaya"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/splitio/redux-client/issues"
},
"homepage": "https://github.com/splitio/redux-client#readme",
"dependencies": {
"@splitsoftware/splitio": "11.0.3",
"tslib": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/redux-mock-store": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-compat": "^4.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^3.1.0",
"jest": "^27.2.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "9.0.0",
"redux": "^5.0.1",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^3.1.0",
"replace": "^1.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^27.0.5",
"typescript": "4.4.4"
},
"peerDependencies": {
"react-redux": ">=4.0.0",
"redux": ">=3.0.0",
"redux-thunk": ">=2.0.0"
},
"peerDependenciesMeta": {
"react-redux": {
"optional": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm test && npm run build"
}
},
"sideEffects": false
}