-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 KB
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
{
"name": "split-react",
"version": "0.0.6",
"description": "An alternative React solution for Split.io",
"author": "e-libs",
"contributors": [
{
"name": "Eric Marques",
"email": "eric@e-libs.dev",
"url": "https://github.com/emarques3"
}
],
"homepage": "https://github.com/e-libs/split-react#readme",
"license": "MIT",
"scripts": {
"lint": "eslint 'src/**/*.{ts,tsx}' --config .eslintrc.js",
"build": "yarn rimraf ./dist && tsc -p tsconfig.json",
"test": "jest -i -c jest.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/e-libs/split-react"
},
"keywords": [
"splitio",
"split",
"react"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/react": "^17.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "ˆ14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "17.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@splitsoftware/splitio": "^10.15.2",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "17.0.1"
}
}