-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 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
61
62
63
64
65
66
67
68
69
{
"name": "ab-react",
"version": "2.0.3",
"description": "A/B testing component for React",
"scripts": {
"prebuild": "rm -rf ./dist && mkdir ./dist",
"build": "npm run prebuild && rollup -c rollup.config.mjs && npm run build:types",
"build:types": "rollup -c rollup.types.config.mjs",
"test": "jest",
"lint": "eslint src/"
},
"main": "dist/ab-react.min.cjs",
"module": "dist/ab-react.min.mjs",
"repository": {
"url": "git+https://github.com/kelvne/ab-react.git",
"type": "git"
},
"author": "Kelvne M. Pechim <kelvne.pechim@gmail.com>",
"license": "OSINP",
"private": false,
"peerDependencies": {
"react": ">=18",
"react-cookie": "^7.2.0",
"react-dom": ">=18"
},
"dependencies": {
"react-cookie": "^7.2.0"
},
"exports": {
".": {
"types": "./dist/ab-react.d.ts",
"require": "./dist/ab-react.min.cjs",
"import": "./dist/ab-react.min.mjs",
"default": "./dist/ab-react.min.cjs"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "8.57.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"react": "^18",
"react-dom": "^18",
"rollup": "^4.21.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-progress": "^1.1.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "5.5.4"
}
}