-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "ab-testing-hook",
"version": "1.0.8",
"description": "A React hook for A/B testing.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts,.tsx --cache"
},
"files": [
"dist"
],
"keywords": [
"react",
"hooks",
"next",
"next.js",
"testing",
"ab test",
"A/B testing",
"a/b",
"ab"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pritulaziah/ab-testing-hook.git"
},
"author": "",
"bugs": {
"url": "https://github.com/pritulaziah/ab-testing-hook/issues"
},
"homepage": "https://github.com/pritulaziah/ab-testing-hook#readme",
"devDependencies": {
"@types/blueimp-md5": "^2.18.0",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"blueimp-md5": "^2.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}