-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "pricing4react",
"version": "2.2.0",
"description": "A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "jest"
},
"keywords": [
"feature",
"toggle",
"pricing",
"plan",
"react",
"component"
],
"author": "ISA Group, University of Seville, Spain",
"homepage": "https://github.com/isa-group/Pricing4React#readme",
"repository": {
"type": "git",
"url": "https://github.com/isa-group/Pricing4React"
},
"license": "MIT",
"dependencies": {
"@openfeature/react-sdk": "^0.4.10",
"@types/react": "^18.2.12",
"buffer": "^6.0.3",
"pricing4ts": "^0.7.1",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"peerDependencies": {
"react-router-dom": ">=6.15.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react-dom": "^18.2.7",
"cssnano": "^6.0.2",
"jest": "^29.7.0",
"react-router-dom": "^6.15.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^4.5.4"
},
"files": [
"dist"
]
}